/* ==========================================================
   شركة دورك للتطوير العقاري — Custom Stylesheet
   ========================================================== */


/* ─── CSS Variables ─── */
:root {
  --gold: #b59478;
  --gold-light: #d4b896;
  --gold-dark: #8a6e54;
  --navy: #233a5b;
  --navy-dark: #152540;
  --navy-light: #2e4d78;
  --bg: #f1eee5;
  --bg-dark: #e8e3d8;
  --white: #ffffff;
  --text-dark: #1a2538;
  --text-muted: #6b7a8f;
  --font-main: 'Noto Kufi Arabic', sans-serif;
  --font-display: 'Noto Kufi Arabic', serif;
  --shadow-sm: 0 2px 12px rgba(35, 58, 91, 0.08);
  --shadow-md: 0 8px 32px rgba(35, 58, 91, 0.14);
  --shadow-lg: 0 20px 60px rgba(35, 58, 91, 0.2);
  --shadow-gold: 0 8px 24px rgba(181, 148, 120, 0.3);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
:root {
      --gold:       #b59478;
      --gold-dark:  #8a6e54;
      --white:     #ffffff;
      --dark:      #111111;
      --nav-bg:    rgba(255,255,255,0.97);
      --nav-radius: 60px;
      --font-main: 'Noto Kufi Arabic', sans-serif;
      --transition: 0.3s ease;
    }
 
/* ─── Base Reset ─── */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg);
  color: var(--text-dark);
  direction: rtl;
  text-align: right;
  overflow-x: hidden;
  line-height: 1.8;
}

/* ===== NAVBAR ===== */
    .navbar-wrapper {
      position: fixed;
      top: 18px;
      left: 50%;
      transform: translateX(-50%);
      width: calc(100% - 48px);
      max-width: 1380px;
      z-index: 1000;
      transition: top var(--transition), width var(--transition);
    }
    .navbar-wrapper.scrolled { top: 8px; }
 
    .navbar-inner {
      background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.35);
      border-radius: var(--nav-radius);
      padding: 10px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      box-shadow: 0 4px 40px rgba(0,0,0,0.12);
    }
 
    /* Logo */
    .nav-logo {
      display: flex;
      align-items: center;
      gap: 8px;
      text-decoration: none;
      flex-shrink: 0;
    }
    .nav-logo-icon {
      width: 46px; height: 46px;
      background: var(--gold);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: var(--white);
      font-size: 20px;
    }
    .nav-logo-text { line-height: 1.1; }
    .nav-logo-text strong {
      display: block;
      font-family: 'Noto Kufi Arabic', sans-serif;
      font-size: 20px;
      font-weight: 800;
      color: var(--dark);
      letter-spacing: -0.3px;
    }
    .nav-logo-text span {
      display: block;
      font-size: 9px;
      font-weight: 600;
      color: #888;
      letter-spacing: 1.5px;
      text-transform: uppercase;
    }
 
    /* Nav Links */
    .nav-links {
      display: flex;
      align-items: center;
      gap: 4px;
      list-style: none;
    }
    .nav-links li a {
      display: flex;
      align-items: center;
      gap: 4px;
      padding: 8px 14px;
      font-size: 14px;
      font-weight: 600;
      color: #222;
      text-decoration: none;
      border-radius: 30px;
      transition: background var(--transition), color var(--transition);
      white-space: nowrap;
    }
    .nav-links li a:hover { background: #f3f3f3; color: var(--gold); }
    .nav-links li a .fa-chevron-down { font-size: 9px; margin-top: 1px; }
 
    /* Nav Actions */
    .nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
 
    .btn-started {
      background: var(--gold);
      color: var(--white);
      border: none;
      padding: 10px 22px;
      border-radius: 30px;
      font-family: var(--font-main);
      font-size: 13.5px;
      font-weight: 700;
      cursor: pointer;
      display: flex; align-items: center; gap: 8px;
      text-decoration: none;
      transition: background var(--transition), transform var(--transition);
      white-space: nowrap;
    }
    .btn-started:hover { background: var(--gold-dark); color: var(--white); transform: translateY(-1px); }
 
    .btn-grid {
      width: 42px; height: 42px;
      border: 2px solid #ddd;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      background: transparent;
      cursor: pointer;
      color: #333;
      font-size: 14px;
      transition: border-color var(--transition), color var(--transition);
    }
    .btn-grid:hover { border-color: var(--gold); color: var(--gold); }
 
    /* Hamburger */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 6px;
    }
    .hamburger span {
      display: block; width: 24px; height: 2px;
      background: var(--dark);
      border-radius: 2px;
      transition: var(--transition);
    }
 /* Logo switch */
.logo-icon { display: none; transition: opacity 0.35s ease; }
.logo-full  { transition: opacity 0.35s ease; }

.navbar-wrapper.scrolled .logo-full { display: none; }
.navbar-wrapper.scrolled .logo-icon { display: block; }
/* ✅ الجديد */
.nav-logo { position: relative; width: 100px; height: 46px; }

.logo-full,
.logo-icon {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.logo-full  { opacity: 1;  transform: translateY(-50%) scale(1);    }
.logo-icon  { opacity: 0;  transform: translateY(-50%) scale(0.85); }

.navbar-wrapper.scrolled .logo-full { opacity: 0;  transform: translateY(-50%) scale(0.85); }
.navbar-wrapper.scrolled .logo-icon { opacity: 1;  transform: translateY(-50%) scale(1);    }
    /* Mobile menu */
    .mobile-menu {
      display: none;
      position: absolute;
      top: calc(100% + 10px);
      right: 0; left: 0;
      background: rgba(255, 255, 255, 0.75);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      border: 1px solid rgba(255, 255, 255, 0.35);
      border-radius: 20px;
      padding: 16px;
      box-shadow: 0 8px 40px rgba(0,0,0,0.15);
    }
    .mobile-menu.open { display: block; }
    .mobile-menu ul { list-style: none; }
    .mobile-menu ul li a {
      display: block;
      padding: 10px 14px;
      font-size: 15px; font-weight: 600;
      color: #222;
      text-decoration: none;
      border-radius: 10px;
      transition: background var(--transition);
    }
    .mobile-menu ul li a:hover { background: #f5f5f5; color: var(--gold); }
    .mobile-menu .btn-started { width: 100%; justify-content: center; margin-top: 10px; }
 
    /* ===== HERO SECTION ===== */
    .hero {
      position: relative;
      width: 100%;
      min-height: 100vh;
      display: flex;
      align-items: center;
      overflow: hidden;
    }
 
    /* Background image with overlay */
    .hero-bg {
      position: absolute;
      inset: 0;
      background-image: url('../assets/hero.webp');
      background-size: cover;
      background-position: center;
      transform-origin: center;
      animation: slowZoom 14s ease-in-out infinite alternate;
    }
    @keyframes slowZoom {
      from { transform: scale(1); }
      to   { transform: scale(1.05); }
    }
 
    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        90deg,
        rgba(0,0,0,0.72) 0%,
        rgba(0,0,0,0.48) 50%,
        rgba(0,0,0,0.18) 100%
      );
    }
 
    /* Content */
    .hero-content {
      position: relative;
      z-index: 2;
      padding-top: 120px;
      padding-bottom: 60px;
    }
 
    .hero-eyebrow {
      display: inline-block;
      font-size: 16px;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: white;
      margin-bottom: 18px;
      animation: fadeUp 0.7s ease both;
      background-color: var(--navy-dark);
      padding: 8px 15px;
      border-radius: 35px;
    }
 
    .hero-title {
      font-family: 'Noto Kufi Arabic', sans-serif;
      font-size: clamp(28px, 6vw, 50px);
      font-weight: 900;
      line-height: 1.08;
      color: var(--white);
      margin-bottom: 22px;
      animation: fadeUp 0.7s 0.15s ease both;
    }
    .hero-title span { display: block; }
 
    .hero-desc {
      font-size: clamp(14px, 1.6vw, 17px);
      font-weight: 400;
      color: rgba(255,255,255,0.78);
      max-width: 440px;
      line-height: 1.75;
      margin-bottom: 38px;
      animation: fadeUp 0.7s 0.3s ease both;
    }
 
    .hero-cta {
      animation: fadeUp 0.7s 0.45s ease both;
    }
    .btn-hero {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--gold);
      color: var(--white);
      padding: 14px 30px;
      border-radius: 50px;
      font-family: var(--font-main);
      font-size: 15px;
      font-weight: 700;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
      box-shadow: 0 6px 28px #b59478;
    }
    .btn-hero:hover {
      background: var(--gold-dark);
      color: var(--white);
      transform: translateY(-2px);
      box-shadow: 0 6px 28px #b59478;
    }
    .btn-hero .arrow-icon {
      width: 32px; height: 32px;
      background: rgba(255,255,255,0.2);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 13px;
      transition: background var(--transition);
    }
    .btn-hero:hover .arrow-icon { background: rgba(255,255,255,0.3); }
 
   
 
    /* Animations */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(28px); }
      to   { opacity: 1; transform: translateY(0); }
    }
 
    /* ===== RESPONSIVE ===== */
 
    /* Large screens */
    @media (min-width: 1200px) {
      .nav-links li a { font-size: 15px; padding: 9px 16px; }
    }
 
    /* Tablet */
    @media (max-width: 991px) {
      .nav-links { display: none; }
      .btn-started { display: none; }
      .btn-grid { display: none; }
      .hamburger { display: flex; }
 
      .trust-badge { left: 20px; bottom: 30px; }
      .hero-dots { display: none; }
 
      .hero-title { font-size: clamp(24px, 7vw, 38px); }
    }
 
    /* Mobile */
    @media (max-width: 575px) {
      .navbar-wrapper { width: calc(100% - 24px); top: 12px; }
      .navbar-inner { padding: 8px 16px; }
 
      .hero-title { font-size: 28px; }
      .hero-desc { font-size: 14px; }
 
      .trust-badge {
        bottom: 24px;
        white-space: nowrap;
      }
 
      .hero-dots { display: none; }
      .hero-content { padding-top: 100px; }
    }
/* ─── About Section ─── */
/* ===== ABOUT SECTION ===== */
    .about-section {
      padding: 90px 0 80px;
      position: relative;
      overflow: hidden;
      background: var(--white);
    }
 
    /* Faint building watermark bottom-left */
    .about-section::before {
      content: '';
      position: absolute;
      bottom: -20px;
      right: -40px;
      width: 340px;
      height: 340px;
      background-image: url('../assets/shape.webp');
      background-size: cover;
      background-position: center;
      opacity: 1;
      border-radius: 8px;
      pointer-events: none;
    }
 
    /* ===== LEFT: IMAGES COLLAGE ===== */
    .images-col {
      position: relative;
      min-height: 520px;
    }
 
    /* Main (big) image */
    .img-main {
      position: absolute;
      top: 30px;
      right: 0;
      width: 58%;
      height: 430px;
      border-radius: 18px;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(0,0,0,0.14);
    }
    .img-main img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.6s ease;
    }
    .img-main:hover img { transform: scale(1.04); }
 
    /* Secondary (small) image */
    .img-secondary {
      position: absolute;
      top: 0;
      left: 0;
      width: 54%;
      height: 310px;
      border-radius: 18px;
      overflow: hidden;
      box-shadow: 0 16px 50px rgba(0,0,0,0.12);
      border: 4px solid var(--white);
    }
    .img-secondary img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.6s ease;
    }
    .img-secondary:hover img { transform: scale(1.04); }
 
    /* Experience badge */
    .exp-badge {
      position: absolute;
      top: 200px;
      left: calc(54% - 52px);
      width: 108px;
      height: 108px;
      background: var(--gold);
      border-radius: 50%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      color: var(--white);
      z-index: 4;
      box-shadow: 0 6px 28px rgba(232,52,28,0.45);
      border: 4px solid var(--white);
      overflow: hidden;
    }
    .exp-badge-number {
      font-size: 34px;
      font-weight: 900;
      line-height: 1;
    }
    /* Circular text */
    .exp-badge-ring {
      position: absolute;
      inset: 0;
    }
    .exp-badge-ring svg {
      width: 100%; height: 100%;
    }
    .exp-badge-ring text {
      font-size: 9.5px;
      font-family: var(--font);
      font-weight: 700;
      letter-spacing: 2.2px;
      fill: rgba(255,255,255,0.85);
      text-transform: uppercase;
    }
 
   
    /* ===== RIGHT: CONTENT ===== */
    .content-col {
      padding-inline-start: 20px;
    }
 
    /* Eyebrow */
    .section-eyebrow {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 16px;
    }
    .section-eyebrow::after {
      content: '';
      display: block;
      width: 36px;
      height: 2px;
      background: var(--gold);
      border-radius: 2px;
    }
 
    /* Heading */
    .section-title {
      font-size: clamp(26px, 3.2vw, 42px);
      font-weight: 900;
      line-height: 1.2;
      color: var(--navy-dark);
      margin-bottom: 18px;
    }
 
    /* Body text */
    .section-desc {
      font-size: 14.5px;
      font-weight: 400;
      color: var(--gray);
      line-height: 1.85;
      margin-bottom: 28px;
      max-width: 480px;
    }
 
  
 
    /* Checklist */
    .check-list {
      list-style: none;
      margin-bottom: 20px;
    }
    .check-list li {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 13.5px;
      color: #444;
      font-weight: 500;
      margin-bottom: 10px;
    }
    .check-list li .x-icon {
      color: var(--gold);
      font-size: 14px;
      font-weight: 900;
      flex-shrink: 0;
    }
 
    /* Bold tagline */
    .tagline-bold {
      font-size: 13.5px;
      font-weight: 800;
      color: var(--dark);
      margin-bottom: 28px;
      line-height: 1.5;
    }
 
    /* CTA Button */
    .btn-know {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--gold);
      color: var(--white);
      padding: 14px 28px;
      border-radius: 50px;
      font-family: var(--font);
      font-size: 15px;
      font-weight: 700;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
      box-shadow: 0 6px 28px #b59478;
    }
    .btn-know:hover {
      background: var(--gold-dark);
      color: var(--white);
      transform: translateY(-2px);
      box-shadow: 0 6px 28px #b59478;
    }
    .btn-know .arrow-circle {
      width: 30px; height: 30px;
      background: rgba(255,255,255,0.2);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 12px;
      transition: background var(--transition);
    }
    .btn-know:hover .arrow-circle { background: rgba(255,255,255,0.32); }
 
    /* ===== RESPONSIVE ===== */
    @media (max-width: 991px) {
      .images-col { min-height: 440px; margin-bottom: 60px; }
      .content-col { padding-inline-start: 0; }
      .section-desc { max-width: 100%; }
    }
 
    @media (max-width: 767px) {
      .about-section { padding: 60px 0; }
 
      .images-col { min-height: 380px; }
      .img-main { width: 60%; height: 360px; }
      .img-secondary { width: 55%; height: 260px; }
      .exp-badge { width: 90px; height: 90px; top: 170px; }
      .exp-badge-number { font-size: 28px; }
      .rating-card { left: 10px; bottom: -10px; padding: 14px 16px; min-width: 170px; }
      .rating-number { font-size: 34px; }
 
      .features-row { gap: 20px; }
    }
 
    @media (max-width: 480px) {
      .images-col { min-height: 320px; }
      .img-main { width: 62%; height: 300px; top: 20px; }
      .img-secondary { width: 56%; height: 220px; }
      .exp-badge { width: 82px; height: 82px; top: 145px; }
      .exp-badge-number { font-size: 24px; }
      .rating-card { min-width: 150px; }
      .features-row { flex-direction: column; gap: 14px; }
    }
/* Founded pill */
  .founded-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(26,39,68,0.06);
    border: 1px solid rgba(26,39,68,0.12);
    border-radius: 50px;
    padding: 5px 14px;
    font-size: 12px;
    font-weight: 700;
    color: var(--gray);
    margin-bottom: 14px;
  }
  .founded-pill i {
    color: var(--gold);
    font-size: 12px;
  }
 
  /* Vision / Mission Cards */
  .vision-mission-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 24px;
  }
 
  .vm-card {
    background: #f9f7f4;
    border-radius: 14px;
    border: 1px solid #ede9e2;
    padding: 16px 14px;
  }
 
  .vm-card-head {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
  }
 
  .vm-card-head i {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: rgba(var(--gold-rgb, 184,136,58), 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 14px;
  }
 
  .vm-card-head strong {
    font-size: 13px;
    font-weight: 800;
    color: var(--dark);
  }
 
  .vm-card p {
    font-size: 12.5px;
    color: #666;
    line-height: 1.8;
    margin: 0;
  }
 
  @media (max-width: 575px) {
    .vision-mission-row {
      grid-template-columns: 1fr;
    }
  }
/* ─── Services Section ─── */
 /* ===== SECTION ===== */
    .services-section {
      padding: 90px 0 100px;
      background: var(--section-bg);
      position: relative;
      overflow: hidden;
    }
 
    /* faint watermark building bottom-left */
    .services-section::after {
      content: '';
      position: absolute;
      bottom: -30px;
      left: -20px;
      width: 320px;
      height: 320px;
      background-image: url('https://images.unsplash.com/photo-1486325212027-8081e485255e?w=600&q=40');
      background-size: cover;
      opacity: 0.06;
      border-radius: 10px;
      pointer-events: none;
    }
 
    /* ===== HEADER ===== */
    .section-header {
      text-align: center;
      margin-bottom: 54px;
    }
 
    .section-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 16px;
    }
    .section-eyebrow::before,
    .section-eyebrow::after {
      content: '';
      display: block;
      width: 32px;
      height: 2px;
      background: var(--gold);
      border-radius: 2px;
    }
 
    .section-title {
      font-size: clamp(26px, 3.4vw, 46px);
      font-weight: 900;
      line-height: 1.2;
      color: var(--navy-dark);
      max-width: 660px;
      margin: 0 auto;
    }
 
    /* ===== CARDS ROW ===== */
    .services-row {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }
 
    /* ===== SINGLE CARD ===== */
    .service-card {
      background: white;
      border-radius: var(--radius);
      padding: 26px 22px 22px;
      display: flex;
      flex-direction: column;
      gap: 14px;
      border: 2px solid transparent;
      cursor: pointer;
      transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
      position: relative;
      overflow: hidden;
    }
    .service-card:hover,
    .service-card.active {
      border-color: var(--dark);
      transform: translateY(-4px);
      box-shadow: 0 16px 50px rgba(0,0,0,0.10);
    }
 
    /* Card top row: title + arrow btn */
    .card-top {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 10px;
    }
 
    .card-title {
      font-size: 17px;
      font-weight: 900;
      color: var(--dark);
      line-height: 1.3;
    }
 
    .card-arrow {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      border: 1.5px solid #ccc;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #555;
      font-size: 13px;
      flex-shrink: 0;
      transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition);
    }
    .service-card:hover .card-arrow {
      background: var(--gold-dark);
      border-color: var(--navy-dark);
      color: white;
      transform: rotate(-45deg);
    }
 
    /* Description */
    .card-desc {
      font-size: 13px;
      font-weight: 400;
      color: var(--gray);
      line-height: 1.75;
      flex-grow: 1;
    }
 
    /* Image */
    .card-img {
      width: 100%;
      height: 190px;
      border-radius: 14px;
      overflow: hidden;
      flex-shrink: 0;
    }
    .card-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.55s ease;
    }
    .service-card:hover .card-img img { transform: scale(1.06); }
 
    /* ===== RESPONSIVE ===== */
    @media (max-width: 1100px) {
      .services-row { grid-template-columns: repeat(2, 1fr); }
    }
 
    @media (max-width: 600px) {
      .services-section { padding: 60px 0 70px; }
      .services-row {
        grid-template-columns: 1fr;
        gap: 16px;
      }
      .section-title { font-size: 26px; }
      .card-img { height: 200px; }
    }
/* ─── Counters Section ─── */
#counters {
  padding: 70px 0 60px;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-dark) 60%, #0f1f35 100%);
  position: relative;
  overflow: hidden;
}

#counters::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../assets/counters.webp') center/cover no-repeat;
  opacity: 0.04;
}

/* Geometric Circles */
.geo-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  border: 1px solid rgba(181,148,120,0.1);
}
.geo-circle.c1 { width: 420px; height: 420px; top: -180px; left: -100px; }
.geo-circle.c2 { width: 280px; height: 280px; bottom: -100px; right: -60px; border-color: rgba(181,148,120,0.07); }
.geo-circle.c3 { width: 120px; height: 120px; top: 30px; right: 10%; border-color: rgba(181,148,120,0.13); }

/* Section Header */
.gold-text { color: var(--gold-light); }

#counters .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 14px;
  justify-content: center;
}

#counters .section-tag::before,
#counters .section-tag::after {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold-light);
  opacity: 0.5;
}

#counters .section-title {
  color: var(--white);
  font-size: clamp(1.4rem, 4vw, 1.9rem);
}

/* Stat Cells */
.counters-grid {
  max-width: 860px;
  margin: 0 auto;
}

.stat-cell {
  padding: 32px 16px 28px;
  text-align: center;
  position: relative;
  transition: background 0.3s ease;
  border-radius: 12px;
}

.stat-cell:hover {
  background: rgba(181,148,120,0.05);
}

/* Vertical divider between cells */
.col-md-3:not(:last-child) .stat-cell::after {
  content: '';
  position: absolute;
  top: 15%;
  left: 0;
  height: 70%;
  width: 1px;
  background: rgba(181,148,120,0.15);
}

@media (max-width: 767px) {
  .col-md-3:not(:last-child) .stat-cell::after { display: none; }
  .col-6:nth-child(1) .stat-cell,
  .col-6:nth-child(2) .stat-cell {
    border-bottom: 1px solid rgba(181,148,120,0.13);
    padding-bottom: 28px;
    margin-bottom: 4px;
  }
  .col-6:nth-child(2) .stat-cell::after { display: none !important; }
  .col-6:nth-child(odd) .stat-cell::after {
    display: block;
    top: 15%;
    left: 0;
    height: 70%;
  }
  .col-6:nth-child(even) .stat-cell::after { display: none !important; }
}

.stat-icon {
  width: 44px;
  height: 44px;
  background: rgba(181,148,120,0.1);
  border: 1px solid rgba(181,148,120,0.22);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gold-light);
  margin: 0 auto 16px;
  transition: background 0.3s, border-color 0.3s;
}

.stat-cell:hover .stat-icon {
  background: rgba(181,148,120,0.18);
  border-color: rgba(181,148,120,0.4);
}

.stat-value-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -1px;
  transition: color 0.3s;
}

.stat-cell:hover .stat-num {
  color: var(--gold-light);
}

.stat-suffix {
  font-size: 1rem;
  color: var(--gold);
  font-weight: 700;
  font-family: var(--font-display);
}

.stat-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.5px;
  font-weight: 400;
}

/* Gold Divider */
.gold-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 32px auto 0;
  max-width: 860px;
}

.gold-divider .line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(181,148,120,0.35));
  max-width: 120px;
}

.gold-divider .line.reverse {
  background: linear-gradient(270deg, transparent, rgba(181,148,120,0.35));
}

.gold-divider small {
  font-size: 0.63rem;
  color: rgba(181,148,120,0.45);
  letter-spacing: 3px;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Sub Stats */
.sub-stats-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 24px;
  margin-top: 20px;
}

.sub-stat {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
}

.sub-stat::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold-light);
  opacity: 0.5;
  flex-shrink: 0;
}

.sub-stat strong {
  color: rgba(255,255,255,0.72);
  font-weight: 500;
}
/* فاصل بين صفي الـ counters */
.counters-divider {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 860px;
  margin: 0 auto;
}
.counters-divider div {
  height: 1px;
  background: rgba(181,148,120,0.13);
}

/* الأرقام الكبيرة في الصف الثاني أصغر شوية */
.counters-grid + .counters-divider + .counters-grid .stat-num {
  font-size: clamp(1.4rem, 3.5vw, 2rem);
}
/* ─── Projects Section ─── */
/* ─── Projects Section ─── */
#projects {
  padding: 100px 0;
  background: var(--white);
}

/* ── Filter Tabs ── */
.projects-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  background: var(--bg);
  padding: 6px;
  border-radius: 12px;
  width: fit-content;
  margin: 0 auto 48px;
}

.tab-btn {
  padding: 10px 22px;
  border: none;
  background: transparent;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.85rem;
  font-family: var(--font-main);
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  display: flex;
  align-items: center;
}

.tab-btn.active {
  background: var(--white);
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}

.tab-btn:hover:not(.active) {
  color: var(--gold);
}

/* ── Project Card ── */
.project-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(181,148,120,0.12);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(181,148,120,0.3);
}

/* ── Card Image ── */
.project-card-img {
  height: 220px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.project-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.project-card:hover .project-card-img img {
  transform: scale(1.07);
}

/* Status Badge */
.project-status-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 5px 13px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  gap: 5px;
}

.project-status-badge i { font-size: 0.65rem; }

.status-completed  { background: rgba(34,197,94,0.88);  color:#fff; }
.status-near       { background: rgba(181,148,120,0.92); color:#fff; }
.status-upcoming   { background: rgba(35,58,91,0.9);     color:#fff; }

/* Type Badge */
.project-type-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(11,22,40,0.78);
  color: rgba(255,255,255,0.9);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.7rem;
  backdrop-filter: blur(8px);
}

/* ── Card Body ── */
.project-card-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.project-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.project-card-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0;
}

/* ── Meta Row ── */
.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--bg-dark);
}

.project-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.project-meta-item i {
  color: var(--gold);
  font-size: 0.75rem;
  width: 14px;
  text-align: center;
}

/* ── Features Pills ── */
.project-features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}

.feature-pill {
  background: rgba(181,148,120,0.1);
  color: var(--gold-dark, #8a6a4a);
  border: 1px solid rgba(181,148,120,0.2);
  border-radius: 20px;
  font-size: 0.68rem;
  padding: 3px 10px;
  font-weight: 500;
  white-space: nowrap;
}

/* ── Swiper ── */
.swiper-projects {
  padding-bottom: 50px !important;
  padding-right: 4px !important;
  padding-left: 4px !important;
}

.swiper-pagination-bullet {
  background: var(--gold-dark, #8a6a4a) !important;
  opacity: 0.35;
  transition: all 0.3s;
}

.swiper-pagination-bullet-active {
  background: var(--gold) !important;
  opacity: 1;
  width: 22px !important;
  border-radius: 4px !important;
}
/* fade-in بسيط لما الـ swiper يتبني */
.swiper-projects {
  animation: swiperFadeIn 0.5s ease both;
}
@keyframes swiperFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* تعطيل zoom الصورة أثناء السحب */
.swiper-projects.is-dragging .project-card-img img {
  transition: none;
}
/* ── Empty State ── */
.projects-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
}

.projects-empty i {
  font-size: 3rem;
  color: rgba(181,148,120,0.3);
  display: block;
  margin-bottom: 16px;
}

.projects-empty p {
  font-size: 0.95rem;
}
/* ─── Why Invest ─── */
#why-invest {
  padding: 100px 0;
  background: linear-gradient(160deg, var(--bg) 0%, #e9e4da 100%);
  position: relative;
}

.invest-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(181,148,120,0.12);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.invest-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: var(--transition);
}

.invest-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-light);
}

.invest-card:hover::before {
  transform: scaleX(1);
}

.invest-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, rgba(181,148,120,0.12), rgba(181,148,120,0.05));
  border: 2px solid rgba(181,148,120,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--gold);
  margin: 0 auto 24px;
  transition: var(--transition);
}

.invest-card:hover .invest-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  border-color: transparent;
}

.invest-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.invest-card-text {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.8;
}

/* ─── CTA Section ─── */
#cta {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
}

#cta::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 80px solid rgba(181,148,120,0.06);
}

#cta::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 60px solid rgba(255,255,255,0.04);
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--white);
  margin-bottom: 20px;
}

.cta-text {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.9;
}

.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── Footer ─── */
#footer {
  background: var(--navy-dark);
  padding: 80px 0 30px;
}
.footer-brand img{
  filter: brightness(0) invert(1);
}
.footer-brand .brand-text {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold-light);
}

.footer-brand .brand-sub {
  font-size: 0.7rem;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.4);
  display: block;
  margin-top: 4px;
}

.footer-desc {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  line-height: 1.9;
  margin-top: 16px;
}

.footer-title {
  color: var(--gold-light);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(181,148,120,0.2);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 0.88rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a::before {
  content: '←';
  font-size: 0.75rem;
  color: var(--gold);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold-light);
  padding-right: 4px;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copyright {
  color: rgba(255,255,255,0.4);
  font-size: 0.82rem;
}

.footer-copyright span {
  color: var(--gold);
}

/* ─── Projects Page ─── */
#projects-hero {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  position: relative;
  overflow: hidden;
}

#projects-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1200&q=40') center/cover no-repeat;
  opacity: 0.07;
}

.projects-page-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white);
}

.projects-page-subtitle {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
}

.upcoming-project-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 40px;
  border: 1px solid rgba(181,148,120,0.12);
  transition: var(--transition);
}

.upcoming-project-card:hover {
  box-shadow: var(--shadow-lg);
}

.upcoming-project-img {
  height: 360px;
  overflow: hidden;
  position: relative;
}

.upcoming-project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.upcoming-project-body {
  padding: 40px;
}

.upcoming-project-name {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.project-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
  margin-top: 20px;
  margin-bottom: 28px;
}

.project-features-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-dark);
}

.project-features-list li i {
  color: var(--gold);
  font-size: 0.75rem;
}

.video-embed-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: 28px;
}

.video-embed-wrap iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
}

/* ══════════════════════════════════════════════════════
   DURK REAL ESTATE — Projects Extra CSS
   أضف هذا الملف بعد style.css الرئيسي
   أو الصق المحتوى في نهاية style.css
══════════════════════════════════════════════════════ */

/* ──────────────────────────────────────
   VIDEO LIGHTBOX  #durk-video-lb
────────────────────────────────────── */
#durk-video-lb {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(6, 14, 26, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.32s ease, visibility 0.32s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

#durk-video-lb.active {
  opacity: 1;
  visibility: visible;
}

.dvlb-inner {
  position: relative;
  width: min(860px, 94vw);
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.75);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.38s cubic-bezier(0.34, 1.56, 0.64, 1);
}

#durk-video-lb.active .dvlb-inner {
  transform: scale(1) translateY(0);
}

/* Top bar */
.dvlb-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 20px;
  background: rgba(11, 22, 40, 0.95);
  border-bottom: 1px solid rgba(181, 148, 120, 0.15);
}

.dvlb-title {
  font-family: var(--font-main, 'Tajawal', sans-serif);
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  gap: 8px;
}

.dvlb-title::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--gold-light, #D4A96A);
  border-radius: 50%;
  flex-shrink: 0;
}

.dvlb-close {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.65);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  flex-shrink: 0;
  font-size: 0.85rem;
}

.dvlb-close:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
}

/* 16:9 ratio wrapper */
.dvlb-ratio {
  position: relative;
  padding-top: 56.25%;
  background: #000;
}

.dvlb-ratio iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ──────────────────────────────────────
   PLAY BUTTON ON CARD IMAGE
────────────────────────────────────── */
.proj-img-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 62px;
  height: 62px;
  background: rgba(255, 255, 255, 0.14);
  border: 2px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  font-size: 1.25rem;
  backdrop-filter: blur(6px);
  padding-right: 3px; /* visual center for play icon */
  z-index: 3;
  /* Pulse animation */
  animation: play-pulse 2.8s ease-in-out infinite;
  transition: background 0.28s ease, border-color 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease;
}

.proj-img-play:hover {
  background: var(--gold, #B59478);
  border-color: var(--gold, #B59478);
  color: #fff;
  transform: translate(-50%, -50%) scale(1.12);
  animation: none;
  box-shadow: 0 8px 28px rgba(181, 148, 120, 0.55);
}

@keyframes play-pulse {
  0%   { box-shadow: 0 0 0 0   rgba(255, 255, 255, 0.4); }
  60%  { box-shadow: 0 0 0 16px rgba(255, 255, 255, 0);  }
  100% { box-shadow: 0 0 0 0   rgba(255, 255, 255, 0);  }
}

/* ──────────────────────────────────────
   SWIPER CARD — ACTION ROW
   (play + brochure compact)
────────────────────────────────────── */
.proj-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--bg-dark, #EDE9E4);
}

/* Shared base for both btns in swiper */
.proj-play-btn,
.proj-brochure-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-main, 'Tajawal', sans-serif);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 7px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.28s ease;
  border: none;
  white-space: nowrap;
}

/* Play button — swiper card */
.proj-card-actions .proj-play-btn {
  background: rgba(181, 148, 120, 0.1);
  color: var(--gold-dark, #8a6a4a);
  border: 1px solid rgba(181, 148, 120, 0.25);
}

.proj-card-actions .proj-play-btn:hover {
  background: var(--gold, #B59478);
  color: #fff;
  border-color: var(--gold, #B59478);
}

/* Brochure button — swiper card */
.proj-card-actions .proj-brochure-btn {
  color: var(--gold-dark);
  border: 1px solid var(--gold-dark);
}

.proj-card-actions .proj-brochure-btn:hover {
  background: var(--gold-light);
  color: #fff;
  border-color: var(--gold-light);
}

/* ──────────────────────────────────────
   INVEST PAGE CARD — ACTION ROW
────────────────────────────────────── */
.proj-invest-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

/* WhatsApp */
.pia-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  font-family: var(--font-main, 'Tajawal', sans-serif);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.28);
  transition: all 0.28s ease;
}
.pia-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.42);
  color: #fff;
}

/* Booking */
.pia-book {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold-light, #D4A96A), var(--gold, #B59478));
  color: var(--navy, #0B1628);
  font-family: var(--font-main, 'Tajawal', sans-serif);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(181, 148, 120, 0.28);
  transition: all 0.28s ease;
}
.pia-book:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(181, 148, 120, 0.42);
  color: var(--navy, #0B1628);
}

/* Play — invest page */
.proj-invest-actions .proj-play-btn {
  background: transparent;
  color: var(--navy, #0B1628);
  border: 1.5px solid rgba(11, 22, 40, 0.2);
  font-size: 0.85rem;
  padding: 11px 20px;
}
.proj-invest-actions .proj-play-btn:hover {
  border-color: var(--gold, #B59478);
  color: var(--gold-dark, #8a6a4a);
  background: rgba(181, 148, 120, 0.06);
}
.proj-invest-actions .proj-play-btn i { color: var(--gold, #B59478); }

/* Brochure — invest page */
.proj-invest-actions .proj-brochure-btn {
  background: transparent;
  color: #b91c1c;
  border: 1.5px solid rgba(220, 38, 38, 0.25);
  font-size: 0.85rem;
  padding: 11px 20px;
}
.proj-invest-actions .proj-brochure-btn:hover {
  background: #dc2626;
  color: #fff;
  border-color: #dc2626;
}

/* ──────────────────────────────────────
   INVEST PAGE — CARD LAYOUT
   (reuse from previous version)
────────────────────────────────────── */
.invest-card {
  background: var(--white, #fff);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(181, 148, 120, 0.11);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  margin-bottom: 36px;
  transition: all 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}
.invest-card:last-child { margin-bottom: 0; }
.invest-card:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.13);
  border-color: rgba(181, 148, 120, 0.25);
  transform: translateY(-3px);
}

.ic-img-pane {
  position: relative;
  min-height: 340px;
  overflow: hidden;
}
@media (max-width: 991px) { .ic-img-pane { min-height: 260px; } }

.ic-img-pane img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.7s ease;
}
.invest-card:hover .ic-img-pane img { transform: scale(1.05); }

.ic-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,22,40,0.6) 0%, rgba(11,22,40,0.08) 50%, transparent 100%);
}

.ic-badge-status {
  position: absolute; top: 18px; right: 18px;
  background: rgba(181,148,120,0.92); color: #fff;
  padding: 5px 14px; border-radius: 24px;
  font-size: 0.7rem; font-weight: 600;
  backdrop-filter: blur(8px);
  display: flex; align-items: center; gap: 6px;
}

.ic-badge-type {
  position: absolute; bottom: 18px; right: 18px;
  background: rgba(11,22,40,0.78); color: rgba(255,255,255,0.88);
  padding: 4px 13px; border-radius: 20px;
  font-size: 0.7rem; backdrop-filter: blur(8px);
}

.ic-body {
  padding: 36px 40px 36px 32px;
  display: flex; flex-direction: column; height: 100%;
}
@media (max-width: 991px) { .ic-body { padding: 28px 22px; } }

.ic-eyebrow {
  font-size: 0.66rem; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--gold, #B59478);
  font-weight: 600; margin-bottom: 10px;
}

.ic-title {
  font-family: var(--font-display, 'Playfair Display', Georgia, serif);
  font-size: clamp(1.3rem, 2.8vw, 1.75rem);
  font-weight: 700; color: var(--navy, #0B1628);
  line-height: 1.25; margin-bottom: 12px;
}

.ic-desc {
  font-size: 0.87rem; color: var(--text-muted, #7a7a7a);
  line-height: 1.85; margin-bottom: 20px;
}

.ic-chips {
  display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 20px;
}
.ic-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--bg, #F7F5F2); border: 1px solid var(--bg-dark, #EDE9E4);
  color: var(--navy, #0B1628); padding: 6px 13px;
  border-radius: 24px; font-size: 0.76rem; font-weight: 500;
}
.ic-chip i { color: var(--gold, #B59478); font-size: 0.68rem; }

.ic-features {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 7px 14px; margin-bottom: 24px;
}
@media (max-width: 400px) { .ic-features { grid-template-columns: 1fr; } }

.ic-feat {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.8rem; color: var(--navy, #0B1628);
}
.ic-feat i { color: var(--gold, #B59478); font-size: 0.65rem; flex-shrink: 0; }

.ic-divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(181,148,120,0.3), transparent);
  margin-bottom: 24px;
}

/* ──────────────────────────────────────
   SKELETON LOADER
────────────────────────────────────── */
.sk-card {
  background: var(--white, #fff);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--bg-dark, #EDE9E4);
  margin-bottom: 36px;
}
.sk-pulse {
  background: linear-gradient(90deg, #f0ece8 25%, #e4ddd6 50%, #f0ece8 75%);
  background-size: 200% 100%;
  animation: sk-shimmer 1.6s infinite;
}
@keyframes sk-shimmer {
  0%   { background-position:  200% 0; }
  100% { background-position: -200% 0; }
}


.whatsapp-btn {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
  border: none;
  padding: 16px 36px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  font-family: var(--font-main);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(37,211,102,0.3);
}

.whatsapp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(37,211,102,0.45);
  color: var(--white);
}

.empty-state {
  text-align: center;
  padding: 80px 20px;
}

.empty-state i {
  font-size: 4rem;
  color: var(--gold-light);
  margin-bottom: 20px;
  display: block;
}

/* ─── AOS overrides ─── */
[data-aos] {
  pointer-events: none;
}
[data-aos].aos-animate {
  pointer-events: auto;
}

/* ─── Floating WhatsApp ─── */
.float-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.4rem;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
  z-index: 999;
  animation: float-bounce 3s ease-in-out infinite;
}

.float-whatsapp:hover {
  transform: scale(1.1);
  color: var(--white);
}

@keyframes float-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ─── Loading skeleton ─── */
.skeleton {
  background: linear-gradient(90deg, #e8e3d8 25%, #f1eee5 50%, #e8e3d8 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: var(--radius);
}

@keyframes skeleton-loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.skeleton-card {
  height: 320px;
  border-radius: var(--radius-lg);
}

/* ─── Responsive ─── */
@media (max-width: 991.98px) {
  .about-images-wrap { height: 320px; margin-bottom: 40px; }
  .about-img-main { width: 75%; height: 250px; }
  .about-img-secondary { width: 55%; height: 200px; }
  .hero-stats { gap: 24px; }
  .hero-stat-num { font-size: 1.6rem; }
  .counter-num { font-size: 2.8rem; }
}

@media (max-width: 767.98px) {
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn-gold, .hero-cta .btn-outline-gold { width: 100%; justify-content: center; }
  .about-images-wrap { display: none; }
  .counter-divider { display: none; }
  .projects-tabs { flex-direction: column; width: 100%; }
  .cta-btns { flex-direction: column; }
  .cta-btns .btn-gold, .cta-btns .btn-outline-gold { width: 100%; justify-content: center; }
  .upcoming-project-body { padding: 24px; }
}

@media (max-width: 575.98px) {
  .section-title { font-size: 1.6rem; }
  .hero-title { font-size: 1.9rem; }
}

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  padding: 12px 26px;
  border-radius: var(--radius);

  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);

  font-family: var(--font-main);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;

  transition: var(--transition);
  position: relative;
  overflow: hidden;

  box-shadow: var(--shadow-sm);
}

/* Hover */
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold-light);

  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* Active */
.btn-outline-gold:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

/* Focus accessibility */
.btn-outline-gold:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(181, 148, 120, 0.25);
}

/* Subtle shine effect */
.btn-outline-gold::before {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 50%;
  height: 100%;

  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.25),
    transparent
  );

  transform: skewX(-20deg);
  transition: 0.6s ease;
}

.btn-outline-gold:hover::before {
  left: 130%;
}