    :root {
      --primary-color: #c28a6b;
      --secondary-color: #000000;
      --text-dark: #FFFFFF;
      --text-light: #CCCCCC;
      --gradient-start: #000000;
      --gradient-end: #c28a6b;
    }
    
    /* Fix: Disable preloader (preload.gif not found) */
    #preloader {
      display: none !important;
    }
    #status {
      background-image: none !important;
    }
    
    /* Basic Reset */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
      font-family: 'Aktiv Grotesk Trial', sans-serif;
      color: #fff;
      overflow-x: hidden;
      /* padding-bottom: 80px; */
      background: #000;
    }
    
    .banner-img {
      width: 100%;
      height: auto;
    }
    
    /* ==================== FADE SLIDER (HERO BANNER) ==================== */
    .hero-bg-slider {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
      overflow: hidden;
    }

    .hero-bg-slider.fade-slider,
    .fade-slider {
      position: absolute;
      width: 100%;
      height: 100%;
      overflow: hidden;
      margin: 0;
    }

    .hero-bg-slider.fade-slider img,
    .fade-slider img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0;
      transform: scale(1.06);
      transition: opacity 1.4s ease-out, transform 1.4s ease-out;
    }

    .hero-bg-slider.fade-slider img.active,
    .fade-slider img.active {
      opacity: 1;
      transform: scale(1);
      z-index: 1;
      animation: hero-soft-zoom 5s ease-in-out forwards;
    }

    @keyframes hero-soft-zoom {
      from { transform: scale(1); }
      to { transform: scale(1.03); }
    }

    .hero-content-inner {
      position: relative;
      z-index: 2;
      width: 100%;
      height: 100%;
      min-height: 100vh;
      display: block;
      box-sizing: border-box;
    }

    /* Hero: keep rotator text and "our works" button visible in center-bottom of banner */
    #content article#home .hero-content-inner .home-text,
    #content article#home .hero-content-inner .link-home {
      left: 0;
      right: 0;
      margin-left: auto;
      margin-right: auto;
    }
    #content article#home .hero-content-inner .home-text h1 {
      text-align: center;
    }

    @media (min-width: 767px) {
      .hero-bg-slider.fade-slider img,
      .fade-slider img {
        height: 100vh;
        width: 100%;
        object-fit: cover;
      }
    }
    
    /* ==================== HERO CONTENT (Inside article#home with background slideshow) ==================== */
    .hero-content-wrapper {
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
      padding: 80px 20px;
      text-align: center;
      color: white;
    }
    
    .hero-logo-wrapper {
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 30px;
      animation: fadeInDown 1s ease;
    }
    
    .hero-logo-image {
      max-width: 280px;
      height: auto;
      filter: drop-shadow(0 8px 24px rgba(255, 107, 53, 0.4));
      transition: all 0.4s ease;
    }
    
    .hero-logo-image:hover {
      transform: scale(1.05);
      filter: drop-shadow(0 12px 32px rgba(255, 107, 53, 0.6));
    }
    
    .hero-subtitle {
      font-size: 1.8rem;
      font-weight: 300;
      letter-spacing: 2px;
      margin-bottom: 50px;
      line-height: 1.6;
      animation: fadeInUp 1.2s ease;
      color: white !important;
    }
    
    .hero-features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      margin-bottom: 50px;
      animation: fadeInUp 1.4s ease;
    }
    
    .hero-feature-box {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      padding: 30px 20px;
      border-radius: 15px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      transition: all 0.3s ease;
    }
    
    .hero-feature-box:hover {
      background: rgba(255, 255, 255, 0.15);
      transform: translateY(-5px);
    }
    
    .feature-value {
      font-size: 1.5rem;
      font-weight: 700;
      color: #c28a6b !important;
      margin-bottom: 10px;
      text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    }
    
    .feature-label {
      font-size: 1rem;
      font-weight: 300;
      letter-spacing: 1px;
      line-height: 1.4;
      color: white !important;
    }
    
    .cta-button-primary {
      display: inline-block;
      background: #c28a6b;
      color: #FFFFFF !important;
      padding: 18px 35px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 700;
      font-size: 0.8rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      transition: all 0.3s ease;
      animation: fadeInUp 1.6s ease;
      margin-top: 20px;
      box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    }
    
    .cta-button-primary:hover {
      background: #FF8C5A;
      color: white !important;
      transform: translateY(-3px);
      box-shadow: 0 10px 30px rgba(255, 107, 53, 0.6);
    }
    
    @keyframes fadeInDown {
      from {
        opacity: 0;
        transform: translateY(-30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    /* ==================== AMENITIES SECTION ==================== */
    .amenities-section {
      padding: 30px 20px;
      background: #000000;
    }
    
    .section-title {
      text-align: center;
      font-size: 1.5rem;
      font-weight: 700;
      color: #FFFFFF !important;
      letter-spacing: 4px;
      text-transform: uppercase;
      margin-bottom: 70px;
      position: relative;
      padding-bottom: 20px;
    }
    
    .section-title::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 100px;
      height: 4px;
      background: linear-gradient(90deg, #c28a6b 0%, #FF8C5A 100%);
      border-radius: 2px;
    }
    
    .amenities-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 40px;
      max-width: 1400px;
      margin: 0 auto 50px;
    }
    
    .amenity-item {
      text-align: center;
      padding: 30px 20px;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 15px;
      transition: all 0.3s ease;
      border: 2px solid rgba(255, 107, 53, 0.2);
      backdrop-filter: blur(10px);
      min-height: 160px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }
    
    .amenity-item:hover {
      transform: translateY(-5px);
      border-color: var(--primary-color);
      box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
      background: rgba(255, 107, 53, 0.1);
    }
    
    .amenity-icon {
      font-size: 3rem;
      color: var(--primary-color) !important;
      margin-bottom: 15px;
      transition: all 0.3s ease;
    }
    
    .amenity-item:hover .amenity-icon {
      transform: scale(1.1) rotate(5deg);
    }
    
    .amenity-text {
      font-size: 1rem;
      font-weight: 500;
      color: #FFFFFF !important;
      letter-spacing: 0.5px;
      line-height: 1.4;
    }
    
    .cta-buttons-container {
      text-align: center;
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
    }
    
    .cta-button-secondary {
      display: inline-block;
      background: transparent;
      color: #FFFFFF !important;
      padding: 15px 40px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      font-size: 0.8rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      transition: all 0.3s ease;
      border: 2px solid var(--primary-color);
      margin-top: 20px;
    }
    
    .cta-button-secondary:hover {
      background: var(--primary-color);
      color: white !important;
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(255, 107, 53, 0.5);
    }
    
    /* ==================== INFO SECTIONS ==================== */
    
    .info-section.alt-bg {
      background: #000000;
    }
    
    /* ==================== DUBAI SOUTH SECTION WITH IMAGE ==================== */
    .dubai-south-section {
      padding: 25px 0 !important;
      overflow: hidden;
    }
    
    .dubai-south-container {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      padding: 0 40px;
    }
    
    .dubai-south-content {
      max-width: 100% !important;
      text-align: left !important;
    }
    
    .dubai-south-content .info-title {
      text-align: left;
    }
    
    .dubai-south-content .info-title::after {
      left: 0;
      transform: none;
    }
    
    .dubai-south-image {
      position: relative;
      height: 600px;
    }
    
    .dubai-south-image .image-wrapper {
      position: relative;
      width: 100%;
      height: 100%;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    }
    
    .dubai-south-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }
    
    .dubai-south-image .image-wrapper:hover img {
      transform: scale(1.1);
    }
    
    .dubai-south-image .image-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(255, 107, 53, 0.3) 100%
      );
      opacity: 0.6;
      transition: opacity 0.4s ease;
    }
    
    .dubai-south-image .image-wrapper:hover .image-overlay {
      opacity: 0.4;
    }
    
    .dubai-south-image .image-badge {
      position: absolute;
      bottom: 30px;
      left: 30px;
      background: #c28a6b;
      color: white;
      padding: 15px 25px;
      border-radius: 50px;
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 600;
      font-size: 1.1rem;
      box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
      backdrop-filter: blur(10px);
      animation: pulse-badge 2s ease-in-out infinite;
    }
    
    @keyframes pulse-badge {
      0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
      }
      50% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(255, 107, 53, 0.6);
      }
    }
    
    .dubai-south-image .image-badge i {
      font-size: 1.2rem;
      animation: bounce 2s ease-in-out infinite;
    }
    
    @keyframes bounce {
      0%, 100% {
        transform: translateY(0);
      }
      50% {
        transform: translateY(-5px);
      }
    }
    
    /* ==================== BAMX SECTION WITH IMAGE (Reversed Layout) ==================== */
    .bamx-section {
      padding: 25px 0 !important;
      overflow: hidden;
      background: #000000;
      }
    
    .bamx-container {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      padding: 0 40px;
    }
    
    .bamx-content {
      max-width: 100% !important;
      text-align: left !important;
    }
    
    .bamx-content .info-title {
      text-align: left;
    }
    
    .bamx-content .info-title::after {
      left: 0;
      transform: none;
    }
    
    .bamx-image {
      position: relative;
      height: 600px;
    }
    
    .bamx-image .image-wrapper {
      position: relative;
      width: 100%;
      height: 100%;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    }
    
    .bamx-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }
    
    .bamx-image .image-wrapper:hover img {
      transform: scale(1.1);
    }
    
    .bamx-image .image-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(194, 138, 107, 0.3) 100%
      );
      opacity: 0.6;
      transition: opacity 0.4s ease;
    }
    
    .bamx-image .image-wrapper:hover .image-overlay {
      opacity: 0.4;
    }
    
    .bamx-image .image-badge {
      position: absolute;
      top: 30px;
      right: 30px;
      background: linear-gradient(135deg, #c28a6b 0%, #d4a574 100%);
      color: white;
      padding: 15px 25px;
      border-radius: 50px;
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 600;
      font-size: 1.1rem;
      box-shadow: 0 10px 30px rgba(194, 138, 107, 0.4);
      backdrop-filter: blur(10px);
      animation: pulse-badge 2s ease-in-out infinite;
    }
    
    .bamx-image .image-badge i {
      font-size: 1.2rem;
      animation: bounce 2s ease-in-out infinite;
    }
    
    .info-content {
      max-width: 900px;
      margin: 0 auto;
      text-align: center;
    }
    
    .info-title {
      font-size: 1.5rem;
      font-weight: 700;
      color: #FFFFFF !important;
      letter-spacing: 4px;
      text-transform: uppercase;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 20px;
    }
    
    .info-title::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 100px;
      height: 4px;
      background: linear-gradient(90deg, #c28a6b 0%, #FF8C5A 100%);
      border-radius: 2px;
    }
    
    .info-text {
      font-size: 1.1rem;
      line-height: 1.8;
      color: #CCCCCC !important;
      margin-bottom: 30px;
    }
    
    .info-features {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin: 40px 0;
      text-align: left;
    }
    
    .info-feature {
      display: flex;
      align-items: start;
      gap: 15px;
      padding: 20px;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 10px;
      transition: all 0.3s ease;
      border: 1px solid rgba(255, 107, 53, 0.2);
    }
    
    .info-section.alt-bg .info-feature {
      background: rgba(255, 255, 255, 0.05);
    }
    
    .info-feature:hover {
      background: rgba(255, 107, 53, 0.1);
      transform: translateX(5px);
      border-color: var(--primary-color);
    }
    
    .info-feature i {
      color: var(--primary-color) !important;
      font-size: 1.5rem;
      margin-top: 5px;
      min-width: 30px;
    }
    
    .info-feature-text {
      font-size: 1rem;
      line-height: 1.6;
      color: rgb(255, 255, 255) !important;
    }
    
    .info-feature strong {
      color: #cbcbcb !important;
    }
    
    /* ==================== RESPONSIVE ==================== */
    @media (max-width: 768px) {
      .hero-content-section {
        padding: 50px 15px;
      }
      
      .hero-logo {
        font-size: 3rem;
        letter-spacing: 8px;
      }
      
      .hero-subtitle {
        font-size: 1.2rem;
        letter-spacing: 1px;
      }
      
      .hero-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      
      .feature-value {
        font-size: 1.5rem;
      }
      
      .section-title,
      .info-title {
        font-size: 1.3rem;
        letter-spacing: 2px;
        margin-bottom: 40px;
      }
      
      .amenities-section {
        padding: 30px 15px;
      }
      
      .amenities-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        margin-bottom: 30px;
      }
      
      .amenity-item {
        padding: 18px 8px;
        min-height: 130px;
        border-radius: 10px;
      }
      
      .amenity-icon {
        font-size: 2rem;
        margin-bottom: 8px;
      }
      
      .amenity-text {
        font-size: 0.8rem;
        line-height: 1.3;
      }
      
      .info-features {
        grid-template-columns: 1fr;
      }
      
      /* Dubai South responsive */
      .dubai-south-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
      }
      
      .dubai-south-content {
        text-align: center !important;
      }
      
      .dubai-south-content .info-title {
        text-align: center;
      }
      
      .dubai-south-content .info-title::after {
        left: 50%;
        transform: translateX(-50%);
      }
      
      .dubai-south-image {
        height: 400px;
        order: -1;
      }
      
      .dubai-south-image .image-badge {
        bottom: 20px;
        left: 20px;
        padding: 12px 20px;
        font-size: 0.95rem;
      }
      
      /* BAMX responsive */
      .bamx-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
      }
      
      .bamx-content {
        text-align: center !important;
      }
      
      .bamx-content .info-title {
        text-align: center;
      }
      
      .bamx-content .info-title::after {
        left: 50%;
        transform: translateX(-50%);
      }
      
      .bamx-image {
        height: 400px;
        order: -1;
      }
      
      .bamx-image .image-badge {
        top: 20px;
        right: 20px;
        padding: 12px 20px;
        font-size: 0.95rem;
      }
      
      .cta-buttons-container {
        flex-direction: column;
        align-items: center;
      }
      
      .cta-button-primary,
      .cta-button-secondary {
        width: 100%;
        max-width: 300px;
      }
    }
    
    @media (max-width: 480px) {
      .amenities-section {
        padding: 30px 12px;
      }
      
      .section-title {
        font-size: 1.1rem;
        margin-bottom: 30px;
      }
      
      .amenities-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        margin-bottom: 25px;
      }
      
      .amenity-item {
        padding: 12px 6px;
        min-height: 110px;
        border-radius: 8px;
        border-width: 1.5px;
      }
      
      .amenity-icon {
        font-size: 1.6rem;
        margin-bottom: 6px;
      }
      
      .amenity-text {
        font-size: 0.7rem;
        line-height: 1.2;
      }
    }
    
    /* ==================== MODAL STYLES ==================== */
    .modal-overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgb(0 0 0 / 16%);
      backdrop-filter: blur(10px);
      z-index: 2147483647;
      opacity: 0;
      transition: opacity 0.3s ease;
      overflow-y: auto;
      padding: 20px;
      pointer-events: none;
    }
    
    .modal-overlay.active {
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 100vh;
      min-height: 100dvh;
      opacity: 1;
      animation: fadeIn 0.3s ease;
      pointer-events: auto;
    }
    
    .modal-container {
      background: #ffffff;
      border: 2px solid #c28a6b;
      border-radius: 20px;
      max-width: 650px;
      width: 100%;
      margin: auto;
      position: relative;
      box-shadow: 0 20px 60px rgba(255, 107, 53, 0.5);
      transform: scale(0.7);
      transition: transform 0.3s ease;
      overflow: hidden;
      pointer-events: auto;
      z-index: 1;
    }
    
    .modal-body,
    .modal-body iframe,
    .modal-close {
      pointer-events: auto;
    }
    
    .modal-overlay.active .modal-container {
      transform: scale(1);
      animation: modalZoomIn 0.3s ease;
    }
    
    .modal-close {
      position: absolute;
      top: 30px;
      right: 30px;
      background: rgba(255, 107, 53, 0.2);
      border: 2px solid #c28a6b;
      color: #FFFFFF;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
      z-index: 2147483646;
      font-size: 18px;
      pointer-events: auto;
    }
    
    .modal-close:hover {
      background: #c28a6b;
      transform: rotate(90deg);
      box-shadow: 0 4px 15px rgba(255, 107, 53, 0.5);
    }
    
    .modal-body {
      padding: 20px;
      background: #ffffff;
    }
    
    .modal-body iframe {
      border-radius: 10px;
      background: #FFFFFF;
      display: block;
    }
    
    @keyframes fadeIn {
      from {
        opacity: 0;
      }
      to {
        opacity: 1;
      }
    }
    
    @keyframes modalZoomIn {
      from {
        transform: scale(0.7);
        opacity: 0;
      }
      to {
        transform: scale(1);
        opacity: 1;
      }
    }
    
    /* Responsive Modal */
    @media (max-width: 768px) {
      .modal-overlay {
        padding: 15px;
        align-items: center;
      }
      
      .modal-container {
        max-width: 100%;
        width: 100%;
        max-height: calc(100vh - 30px);
        border-radius: 15px;
        border: 2px solid #c28a6b;
      }
      
      .modal-body {
        padding: 10px;
        display: flex;
        align-items: stretch;
        justify-content: center;
      }
      
      .modal-close {
        top: 10px;
        right: 10px;
        width: 36px;
        height: 36px;
        font-size: 16px;
        background: #c28a6b;
      }
      
    }
    
    @media (max-width: 480px) {
      .modal-overlay {
        padding: 12px;
      }
      
      .modal-container {
        width: 100%;
        max-height: calc(100vh - 24px);
        border-radius: 12px;
      }
      
      .modal-body {
        padding: 8px;
      }
      
      .modal-close {
        top: 8px;
        right: 8px;
        width: 34px;
        height: 34px;
        font-size: 15px;
      }
      
    }
    
    /* When modal is open, ensure preloader never blocks clicks */
    body.modal-open #preloader {
      display: none !important;
      pointer-events: none !important;
    }
    
    /* Prevent body scroll when modal is open */
    body.modal-open {
      overflow: hidden;
    }
    
    /* ==================== PROJECTS SWIPER ==================== */
    .projects-swiper {
      width: 100%;
      padding: 20px 0 60px;
    }
    
    .projects-swiper .swiper-slide {
      height: auto;
    }
    
    .project-card {
      background: rgba(255, 255, 255, 0.05);
      border-radius: 20px;
      overflow: hidden;
      border: 2px solid rgba(255, 107, 53, 0.3);
      transition: all 0.3s ease;
      height: 100%;
      display: flex;
      flex-direction: column;
      backdrop-filter: blur(10px);
    }
    
    .project-card:hover {
      border-color: #c28a6b;
      transform: translateY(-5px);
      box-shadow: 0 20px 40px rgba(255, 107, 53, 0.4);
    }
    
    .project-image-wrapper {
      position: relative;
      overflow: hidden;
      height: 280px;
    }
    
    .project-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    
    .project-card:hover .project-image {
      transform: scale(1.05);
    }
    
    .project-badge-top {
      position: absolute;
      top: 15px;
      left: 15px;
      background: rgba(16, 185, 129, 0.95);
      color: white;
      padding: 8px 16px;
      border-radius: 20px;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.5px;
      box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
      z-index: 2;
    }
    
    .project-badge-bottom {
      position: absolute;
      bottom: 15px;
      left: 15px;
      background: rgba(0, 0, 0, 0.8);
      color: white;
      padding: 7px 14px;
      border-radius: 18px;
      font-size: 11px;
      font-weight: 600;
      backdrop-filter: blur(10px);
      z-index: 2;
    }
    
    .project-content {
      padding: 25px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }
    
    .project-header {
      margin-bottom: 18px;
    }
    
    .project-title {
      font-size: 1.55rem;
      font-weight: 700;
      color: #FFFFFF !important;
      letter-spacing: 0.5px;
      margin: 0 0 8px 0;
      line-height: 1.25;
      transition: color 0.3s ease;
    }
    
    .project-card:hover .project-title {
      color: #c28a6b !important;
    }
    
    .project-price {
      font-size: 0.88rem;
      color: #c28a6b !important;
      font-weight: 600;
      letter-spacing: 0.3px;
      line-height: 1.4;
    }
    
    .project-logo {
      flex-shrink: 0;
      width: 70px;
      height: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(255, 255, 255, 0.05);
      padding: 10px;
      border-radius: 12px;
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      transition: all 0.3s ease;
    }
    
    .project-card:hover .project-logo {
      background: rgba(255, 255, 255, 0.08);
      transform: scale(1.05);
      border-color: rgba(255, 107, 53, 0.3);
    }
    
    .project-logo img {
      max-width: 100%;
      max-height: 100%;
      width: auto;
      height: auto;
      object-fit: contain;
      filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    }
    
    .inline-logo {
      height: 1.3em;
      width: auto;
      display: inline-block;
      vertical-align: middle;
      margin: 0 4px -2px 0;
      filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
      transition: all 0.3s ease;
    }
    
    .project-card:hover .inline-logo {
      filter: drop-shadow(0 2px 8px rgba(255, 107, 53, 0.5));
    }
    
    .inline-logo-title {
      height: 2.2em;
      width: auto;
      display: inline-block;
      vertical-align: middle;
      margin: -8px 8px 0 8px;
      filter: drop-shadow(0 4px 12px rgba(255, 107, 53, 0.5));
      transition: all 0.3s ease;
    }
    
    
    .project-stats {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 24px;
      padding: 18px 0;
      border-top: 1px solid rgba(255, 107, 53, 0.15);
      border-bottom: 1px solid rgba(255, 107, 53, 0.15);
      background: linear-gradient(90deg, rgba(255, 107, 53, 0.02) 0%, transparent 100%);
      gap: 20px;
    }
    
    .stats-left {
      display: flex;
      gap: 24px;
      flex: 1;
    }
    
    .stat-item {
      display: flex;
      align-items: center;
      gap: 12px;
      transition: transform 0.3s ease;
    }
    
    .project-card:hover .stat-item {
      transform: translateX(3px);
    }
    
    .stat-item i {
      color: #c28a6b !important;
      font-size: 22px;
      filter: drop-shadow(0 2px 4px rgba(255, 107, 53, 0.3));
    }
    
    .stat-value {
      display: block;
      font-size: 1.4rem;
      font-weight: 700;
      color: #FFFFFF !important;
      line-height: 1;
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }
    
    .stat-label {
      display: block;
      font-size: 0.75rem;
      color: #CCCCCC !important;
      margin-top: 3px;
      letter-spacing: 0.5px;
    }
    
    .project-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      background: linear-gradient(135deg, #c28a6b 0%, #FF8C5A 100%);
      color: white !important;
      padding: 14px 32px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: 700;
      font-size: 14px;
      letter-spacing: 0.5px;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      border: 2px solid transparent;
      margin-top: auto;
      box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
      position: relative;
      overflow: hidden;
    }
    
    .project-cta::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
      transition: left 0.5s ease;
    }
    
    .project-cta:hover::before {
      left: 100%;
    }
    
    .project-cta:hover {
      background: transparent;
      color: #c28a6b !important;
      border-color: #c28a6b;
      transform: translateY(-2px);
      box-shadow: 0 12px 32px rgba(255, 107, 53, 0.4);
    }
    
    /* Swiper Navigation Buttons */
    .projects-swiper .swiper-button-next,
    .projects-swiper .swiper-button-prev {
      background: linear-gradient(135deg, rgba(255, 107, 53, 0.95) 0%, rgba(255, 140, 90, 0.95) 100%);
      width: 50px;
      height: 50px;
      border-radius: 50%;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      border: 2px solid rgba(255, 255, 255, 0.1);
      box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3),
                  0 0 0 1px rgba(255, 255, 255, 0.05) inset;
      backdrop-filter: blur(10px);
    }
    
    .projects-swiper .swiper-button-next:after,
    .projects-swiper .swiper-button-prev:after {
      font-size: 18px;
      color: white;
      font-weight: 900;
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }
    
    .projects-swiper .swiper-button-next:hover,
    .projects-swiper .swiper-button-prev:hover {
      background: linear-gradient(135deg, #c28a6b 0%, #FF8C5A 100%);
      transform: scale(1.15);
      box-shadow: 0 12px 32px rgba(255, 107, 53, 0.5);
    }
    
    .projects-swiper .swiper-button-next:active,
    .projects-swiper .swiper-button-prev:active {
      transform: scale(1.05);
    }
    
    /* Swiper Pagination */
    .projects-swiper .swiper-pagination {
      position: relative;
      margin-top: 30px;
    }
    
    .projects-swiper .swiper-pagination-bullet {
      width: 12px;
      height: 12px;
      background: rgba(255, 255, 255, 0.3);
      opacity: 1;
      transition: all 0.3s ease;
      border: 2px solid transparent;
    }
    
    .projects-swiper .swiper-pagination-bullet:hover {
      background: rgba(255, 107, 53, 0.6);
      transform: scale(1.2);
    }
    
    .projects-swiper .swiper-pagination-bullet-active {
      background: linear-gradient(135deg, #c28a6b 0%, #FF8C5A 100%);
      width: 36px;
      border-radius: 8px;
      border-color: rgba(255, 255, 255, 0.2);
      box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
    }
    
    /* Responsive */
    @media (max-width: 768px) {
      .hero-logo-image {
        max-width: 220px;
      }
      
      .inline-logo-title {
        height: 2.2em;
        margin: -6px 6px 0 6px;
      }
      
      .projects-swiper {
        padding: 20px 0 60px;
      }
      
      .project-card {
        border-radius: 20px;
      }
      
      .project-image-wrapper {
        height: 260px;
      }
      
      .project-content {
        padding: 22px;
      }
      
      .project-title {
        font-size: 1.42rem;
      }
      
      .project-price {
        font-size: 0.85rem;
      }
      
      .project-stats {
        flex-direction: row;
        gap: 16px;
      }
      
      .stats-left {
        gap: 18px;
      }
      
      .project-logo {
        width: 60px;
        height: 54px;
        padding: 8px;
      }
      
      .project-stats {
        gap: 18px;
        padding: 14px 0;
      }
      
      .stat-item i {
        font-size: 20px;
      }
      
      .stat-value {
        font-size: 1.2rem;
      }
      
      .stat-label {
        font-size: 0.7rem;
      }
      
      .project-cta {
        padding: 12px 26px;
        font-size: 13px;
      }
      
      .projects-swiper .swiper-button-next,
      .projects-swiper .swiper-button-prev {
        width: 42px;
        height: 42px;
      }
      
      .projects-swiper .swiper-button-next:after,
      .projects-swiper .swiper-button-prev:after {
        font-size: 16px;
      }
    }
    
    @media (max-width: 480px) {
      .hero-logo-image {
        max-width: 180px;
      }
      
      .inline-logo {
        height: 1.1em;
        margin: 0 3px -2px 0;
      }
      
      .inline-logo-title {
        height: 2.2em;
        margin: -5px 5px 0 5px;
      }
      
      .projects-swiper {
        padding: 15px 0 50px;
      }
      
      .project-card {
        border-radius: 18px;
      }
      
      .project-card:hover {
        transform: translateY(-5px) scale(1.01);
      }
      
      .project-image-wrapper {
        height: 240px;
      }
      
      .project-badge-top {
        top: 15px;
        left: 15px;
        padding: 8px 16px;
        font-size: 11px;
      }
      
      .project-badge-bottom {
        bottom: 15px;
        left: 15px;
        padding: 7px 14px;
        font-size: 10px;
      }
      
      .project-content {
        padding: 20px;
      }
      
      .project-header {
        margin-bottom: 16px;
      }
      
      .project-title {
        font-size: 1.28rem;
      }
      
      .project-price {
        font-size: 0.8rem;
      }
      
      .project-stats {
        align-items: flex-start;
        gap: 12px;
      }
      
      .stats-left {
        gap: 16px;
        width: 100%;
      }
      
      .project-logo {
        width: 55px;
        height: 48px;
        padding: 7px;
        align-self: flex-end;
      }
      
      .project-stats {
        gap: 14px;
        padding: 12px 0;
      }
      
      .stat-item {
        gap: 10px;
      }
      
      .stat-item i {
        font-size: 18px;
      }
      
      .stat-value {
        font-size: 1.1rem;
      }
      
      .stat-label {
        font-size: 0.65rem;
      }
      
      .project-cta {
        width: 100%;
        padding: 12px 24px;
        font-size: 13px;
        border-radius: 25px;
      }
      
      .projects-swiper .swiper-button-next,
      .projects-swiper .swiper-button-prev {
        width: 38px;
        height: 38px;
      }
      
      .projects-swiper .swiper-button-next:after,
      .projects-swiper .swiper-button-prev:after {
        font-size: 14px;
      }
      
      .projects-swiper .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
      }
      
      .projects-swiper .swiper-pagination-bullet-active {
        width: 28px;
      }
    }
    
    /* ==================== WHY INVEST IN DUBAI SECTION ==================== */
    .invest-section {
      padding: 25px 20px;
      background: #000000;
      position: relative;
      overflow: hidden;
    }
    
    .invest-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: radial-gradient(circle at 30% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 60%);
      pointer-events: none;
    }
    
    .invest-container {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      position: relative;
      z-index: 1;
    }
    
    /* Left Side: Image */
    .invest-image-wrapper {
      position: relative;
    }
    
    .invest-image-container {
      position: relative;
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6),
                  0 0 0 1px rgba(255, 107, 53, 0.2) inset;
      transition: all 0.4s ease;
    }
    
    .invest-image-container:hover {
      transform: translateY(-5px);
      box-shadow: 0 30px 80px rgba(255, 107, 53, 0.3);
    }
    
    .invest-image {
      width: 100%;
      height: 600px;
      object-fit: cover;
      display: block;
      transition: transform 0.6s ease;
    }
    
    .invest-image-container:hover .invest-image {
      transform: scale(1.05);
    }
    
    .invest-image-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
      pointer-events: none;
    }
    
    .invest-stats-badge {
      position: absolute;
      bottom: 30px;
      left: 30px;
      right: 30px;
      display: flex;
      gap: 20px;
      z-index: 2;
    }
    
    .badge-item {
      flex: 1;
      background: rgba(0, 0, 0, 0.85);
      backdrop-filter: blur(20px);
      padding: 20px;
      border-radius: 16px;
      border: 1px solid rgba(255, 107, 53, 0.3);
      text-align: center;
      transition: all 0.3s ease;
    }
    
    .badge-item:hover {
      background: rgba(0, 0, 0, 0.95);
      border-color: #c28a6b;
      transform: translateY(-3px);
    }
    
    .badge-value {
      font-size: 2rem;
      font-weight: 700;
      color: #c28a6b;
      margin-bottom: 5px;
      text-shadow: 0 2px 8px rgba(194, 138, 107, 0.4);
    }
    
    .badge-label {
      font-size: 0.85rem;
      color: #CCCCCC;
      font-weight: 500;
    }
    
    /* Right Side: Content */
    .invest-content {
      padding: 20px 0;
    }
    
    .invest-title {
      font-size: 3rem;
      font-weight: 700;
      color: #FFFFFF;
      margin-bottom: 15px;
      letter-spacing: -0.5px;
      line-height: 1.2;
      background: linear-gradient(135deg, #FFFFFF 0%, #c28a6b 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    
    .invest-subtitle {
      font-size: 1.1rem;
      color: #CCCCCC;
      margin-bottom: 40px;
      line-height: 1.6;
    }
    
    .invest-features {
      display: flex;
      flex-direction: column;
      gap: 25px;
      margin-bottom: 40px;
    }
    
    .invest-feature {
      display: flex;
      gap: 20px;
      align-items: flex-start;
      padding: 20px;
      background: rgba(255, 255, 255, 0.03);
      border-radius: 16px;
      border: 1px solid rgba(255, 107, 53, 0.15);
      transition: all 0.3s ease;
    }
    
    .invest-feature:hover {
      background: rgba(255, 255, 255, 0.05);
      border-color: rgba(255, 107, 53, 0.4);
      transform: translateX(5px);
      box-shadow: 0 8px 24px rgba(255, 107, 53, 0.2);
    }
    
    .feature-icon-wrapper {
      flex-shrink: 0;
      width: 50px;
      height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, rgba(255, 107, 53, 0.2) 0%, rgba(255, 107, 53, 0.1) 100%);
      border-radius: 12px;
      border: 1px solid rgba(255, 107, 53, 0.3);
      transition: all 0.3s ease;
    }
    
    .invest-feature:hover .feature-icon-wrapper {
      background: linear-gradient(135deg, #c28a6b 0%, #d9a685 100%);
      transform: scale(1.1);
    }
    
    .feature-icon-wrapper i {
      font-size: 22px;
      color: #c28a6b;
      transition: color 0.3s ease;
    }
    
    .invest-feature:hover .feature-icon-wrapper i {
      color: white;
    }
    
    .feature-text h3 {
      font-size: 1.2rem;
      font-weight: 700;
      color: #FFFFFF;
      margin: 0 0 8px 0;
      transition: color 0.3s ease;
    }
    
    .invest-feature:hover .feature-text h3 {
      color: #c28a6b;
    }
    
    .feature-text p {
      font-size: 0.95rem;
      color: #CCCCCC;
      margin: 0;
      line-height: 1.6;
    }
    
    /* Responsive */
    @media (max-width: 1024px) {
      .invest-container {
        gap: 40px;
      }
      
      .invest-image {
        height: 500px;
      }
      
      .invest-title {
        font-size: 2.5rem;
      }
    }
    
    @media (max-width: 768px) {
      .invest-section {
        padding: 25px 20px;
      }
      
      .invest-container {
        grid-template-columns: 1fr;
        gap: 50px;
      }
      
      .invest-image {
        height: 450px;
      }
      
      .invest-stats-badge {
        bottom: 20px;
        left: 20px;
        right: 20px;
        gap: 15px;
      }
      
      .badge-item {
        padding: 15px;
      }
      
      .badge-value {
        font-size: 1.6rem;
      }
      
      .invest-title {
        font-size: 2.2rem;
      }
      
      .invest-subtitle {
        font-size: 1rem;
      }
      
      .invest-features {
        gap: 20px;
      }
      
      .invest-feature {
        padding: 18px;
      }
      
      .feature-icon-wrapper {
        width: 45px;
        height: 45px;
      }
      
      .feature-icon-wrapper i {
        font-size: 20px;
      }
      
      .feature-text h3 {
        font-size: 1.1rem;
      }
    }
    
    @media (max-width: 480px) {
      .invest-section {
        padding: 50px 15px;
      }
      
      .invest-container {
        gap: 40px;
      }
      
      .invest-image-container {
        border-radius: 16px;
      }
      
      .invest-image {
        height: 350px;
      }
      
      .invest-stats-badge {
        flex-direction: row;
        gap: 10px;
        bottom: 15px;
        left: 15px;
        right: 15px;
      }
      
      .badge-item {
        padding: 15px 10px;
        border-radius: 12px;
        backdrop-filter: blur(15px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
      }
      
      .badge-value {
        font-size: 1.5rem;
        margin-bottom: 3px;
        text-shadow: 0 2px 6px rgba(255, 107, 53, 0.5);
      }
      
      .badge-label {
        font-size: 0.75rem;
        line-height: 1.3;
        letter-spacing: 0.3px;
      }
      
      .invest-title {
        font-size: 1.8rem;
      }
      
      .invest-subtitle {
        font-size: 0.95rem;
        margin-bottom: 30px;
      }
      
      .invest-features {
        gap: 15px;
        margin-bottom: 30px;
      }
      
      .invest-feature {
        padding: 15px;
        gap: 15px;
      }
      
      .feature-icon-wrapper {
        width: 42px;
        height: 42px;
      }
      
      .feature-icon-wrapper i {
        font-size: 18px;
      }
      
      .feature-text h3 {
        font-size: 1rem;
      }
      
      .feature-text p {
        font-size: 0.9rem;
      }
    }
    
    /* ==================== WAVE DIVIDERS (Wavy Transitions) ==================== */
    .wave-divider {
      position: relative;
      width: 100%;
      overflow: hidden;
      line-height: 0;
      margin: 0;
      padding: 0;
    }
    
    .wave-divider svg {
      position: relative;
      display: block;
      width: calc(100% + 2px);
      height: 80px;
      transform: rotateY(180deg);
    }
    
    .wave-path {
      animation: waveFlow 15s ease-in-out infinite;
      transform-origin: center;
    }
    
    @keyframes waveFlow {
      0%, 100% {
        d: path("M0,60 C250,20 450,100 600,60 C750,20 950,100 1200,60 L1200,120 L0,120 Z");
      }
      25% {
        d: path("M0,80 C250,30 450,90 600,50 C750,10 950,80 1200,50 L1200,120 L0,120 Z");
      }
      50% {
        d: path("M0,40 C250,80 450,30 600,70 C750,100 950,40 1200,70 L1200,120 L0,120 Z");
      }
      75% {
        d: path("M0,70 C250,100 450,40 600,80 C750,30 950,90 1200,50 L1200,120 L0,120 Z");
      }
    }
    
    /* Wave Dividers - All Uniform (Style 5) with Black Backgrounds */
    .wave-divider-1,
    .wave-divider-2,
    .wave-divider-3,
    .wave-divider-4,
    .wave-divider-5 {
      background: #000000;
    }
    
    .wave-divider-1 svg,
    .wave-divider-2 svg,
    .wave-divider-3 svg,
    .wave-divider-4 svg,
    .wave-divider-5 svg {
      height: 110px;
    }
    
    .wave-divider-1 .wave-path,
    .wave-divider-2 .wave-path,
    .wave-divider-3 .wave-path,
    .wave-divider-4 .wave-path,
    .wave-divider-5 .wave-path {
      fill: #000000;
      filter: drop-shadow(0 -8px 25px rgba(255, 107, 53, 0.3));
      animation-duration: 18s;
    }
    
    /* Staggered animation delays for variety */
    .wave-divider-1 .wave-path { animation-delay: 0s; }
    .wave-divider-2 .wave-path { animation-delay: 3s; }
    .wave-divider-3 .wave-path { animation-delay: 6s; }
    .wave-divider-4 .wave-path { animation-delay: 9s; }
    .wave-divider-5 .wave-path { animation-delay: 12s; }
    
    /* Enhanced Section Backgrounds with Wave Effect */
    .info-section,
    .amenities-section,
    .bamx-section,
    .dubai-south-section,
    .invest-section,
    .revolutionary-cta-section {
      position: relative;
      overflow: hidden;
    }
    
    /* Wavy Background Gradients for Each Section */
    .info-section::before,
    .amenities-section::before,
    .bamx-section::before,
    .dubai-south-section::before,
    .invest-section::before {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 200px;
      background: radial-gradient(ellipse at center bottom, rgba(255, 107, 53, 0.05) 0%, transparent 70%);
      pointer-events: none;
      animation: sectionGlow 10s ease-in-out infinite;
    }
    
    @keyframes sectionGlow {
      0%, 100% {
        opacity: 0.3;
        transform: scaleY(1);
      }
      50% {
        opacity: 0.6;
        transform: scaleY(1.2);
      }
    }
    
    /* Ensure content is above the wavy background */
    .info-content,
    .amenities-grid,
    .bamx-container,
    .dubai-south-container,
    .invest-container,
    .revolutionary-cta-container {
      position: relative;
      z-index: 1;
    }
    
    /* Responsive Wave Heights */
    @media (max-width: 768px) {
      .wave-divider-1 svg,
      .wave-divider-2 svg,
      .wave-divider-3 svg,
      .wave-divider-4 svg,
      .wave-divider-5 svg {
        height: 70px;
      }
    }
    
    @media (max-width: 480px) {
      .wave-divider-1 svg,
      .wave-divider-2 svg,
      .wave-divider-3 svg,
      .wave-divider-4 svg,
      .wave-divider-5 svg {
        height: 60px;
      }
    }
    
    /* ==================== REVOLUTIONARY CTA SECTION ==================== */
    .revolutionary-cta-section {
      position: relative;
      padding: 20px 20px;
      background: #000000;
      overflow: hidden;
    }
    
    /* Animated Background */
    .cta-background-animation {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: 
        radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(194, 138, 107, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255, 140, 90, 0.1) 0%, transparent 40%);
      animation: ctaBgPulse 15s ease-in-out infinite;
    }
    
    @keyframes ctaBgPulse {
      0%, 100% { opacity: 0.5; transform: scale(1); }
      50% { opacity: 0.8; transform: scale(1.1); }
    }
    
    .revolutionary-cta-container {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 80px;
      align-items: center;
      position: relative;
      z-index: 2;
    }
    
    /* Left Side: Visual Impact */
    .cta-visual-side {
      position: relative;
      height: 600px;
    }
    
    .cta-image-stack {
      position: relative;
      width: 100%;
      height: 100%;
    }
    
    .cta-stack-img {
      position: absolute;
      width: 85%;
      height: 70%;
      object-fit: cover;
      border-radius: 20px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
      transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .cta-stack-1 {
      top: 0;
      left: 0;
      z-index: 3;
      transform: rotate(-3deg);
    }
    
    .cta-stack-2 {
      top: 60px;
      left: 40px;
      z-index: 2;
      transform: rotate(2deg);
      opacity: 0.9;
    }
    
    .cta-stack-3 {
      top: 120px;
      left: 80px;
      z-index: 1;
      transform: rotate(-1deg);
      opacity: 0.7;
    }
    
    .cta-image-stack:hover .cta-stack-1 {
      transform: rotate(0deg) translateY(-10px);
    }
    
    .cta-image-stack:hover .cta-stack-2 {
      transform: rotate(0deg) translateY(-5px);
      opacity: 1;
    }
    
    .cta-image-stack:hover .cta-stack-3 {
      transform: rotate(0deg);
      opacity: 0.9;
    }
    
    /* Floating Stats Cards */
    .cta-floating-stats {
      position: absolute;
      bottom: -30px;
      left: 0;
      right: 0;
      display: flex;
      gap: 15px;
      z-index: 4;
    }
    
    .cta-stat-card {
      flex: 1;
      background: rgba(0, 0, 0, 0.95);
      backdrop-filter: blur(20px);
      border: 2px solid rgba(255, 107, 53, 0.3);
      border-radius: 16px;
      padding: 20px 15px;
      display: flex;
      align-items: center;
      gap: 15px;
      animation: ctaStatFloat 3s ease-in-out infinite;
      transition: all 0.3s ease;
    }
    
    .cta-stat-card:hover {
      transform: translateY(-10px) scale(1.05);
      border-color: #c28a6b;
      box-shadow: 0 20px 40px rgba(194, 138, 107, 0.4);
    }
    
    .cta-stat-1 { animation-delay: 0s; }
    .cta-stat-2 { animation-delay: 0.5s; }
    .cta-stat-3 { animation-delay: 1s; }
    
    @keyframes ctaStatFloat {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-8px); }
    }
    
    .cta-stat-icon {
      width: 50px;
      height: 50px;
      background: linear-gradient(135deg, #c28a6b 0%, #d9a685 100%);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      color: white;
      flex-shrink: 0;
    }
    
    .cta-stat-content {
      flex: 1;
    }
    
    .cta-stat-number {
      font-size: 2rem;
      font-weight: 700;
      color: #c28a6b;
      line-height: 1;
      margin-bottom: 5px;
      text-shadow: 0 2px 10px rgba(255, 107, 53, 0.5);
    }
    
    .cta-stat-label {
      font-size: 0.85rem;
      color: #CCCCCC;
      font-weight: 500;
    }
    
    /* Right Side: CTA Content */
    .cta-content-side {
      padding: 40px 0;
    }
    
    .cta-badge-top {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: linear-gradient(135deg, rgba(255, 107, 53, 0.2) 0%, rgba(255, 140, 90, 0.2) 100%);
      border: 2px solid rgba(255, 107, 53, 0.5);
      padding: 12px 24px;
      border-radius: 50px;
      color: #c28a6b;
      font-weight: 700;
      font-size: 0.9rem;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      margin-bottom: 30px;
      animation: ctaBadgePulse 2s ease-in-out infinite;
    }
    
    @keyframes ctaBadgePulse {
      0%, 100% { box-shadow: 0 0 20px rgba(255, 107, 53, 0.3); }
      50% { box-shadow: 0 0 40px rgba(255, 107, 53, 0.6); }
    }
    
    .cta-badge-top i {
      font-size: 1.1rem;
      animation: ctaBadgeStar 3s ease-in-out infinite;
    }
    
    @keyframes ctaBadgeStar {
      0%, 100% { transform: rotate(0deg); }
      50% { transform: rotate(180deg); }
    }
    
    .cta-main-title {
      font-size: 1.5rem;
      font-weight: 700;
      color: #FFFFFF;
      line-height: 1.2;
      margin-bottom: 20px;
      letter-spacing: -1px;
    }
    
    .cta-highlight {
      background: linear-gradient(135deg, #c28a6b 0%, #e8c4ad 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      position: relative;
      display: inline-block;
    }
    
    .cta-logo-wrapper {
      margin: 20px 0 30px;
      animation: ctaLogoGlow 3s ease-in-out infinite;
    }
    
    @keyframes ctaLogoGlow {
      0%, 100% { filter: drop-shadow(0 4px 20px rgba(255, 107, 53, 0.4)); }
      50% { filter: drop-shadow(0 8px 40px rgba(255, 107, 53, 0.8)); }
    }
    
    .cta-logo-large {
      height: 80px;
      width: auto;
    }
    
    .cta-description {
      font-size: 1.1rem;
      line-height: 1.8;
      color: #CCCCCC;
      margin-bottom: 35px;
    }
    
    .cta-description strong {
      color: #c28a6b;
      font-weight: 700;
    }
    
    /* Benefits Grid */
    .cta-benefits-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 15px;
      margin-bottom: 40px;
    }
    
    .cta-benefit-item {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 15px;
      background: rgba(255, 255, 255, 0.03);
      border-radius: 12px;
      border: 1px solid rgba(255, 107, 53, 0.2);
      transition: all 0.3s ease;
    }
    
    .cta-benefit-item:hover {
      background: rgba(194, 138, 107, 0.1);
      border-color: #c28a6b;
      transform: translateX(5px);
    }
    
    .cta-benefit-item i {
      color: #c28a6b;
      font-size: 1.3rem;
      flex-shrink: 0;
    }
    
    .cta-benefit-item span {
      color: #FFFFFF;
      font-weight: 500;
      font-size: 0.95rem;
    }
    
    /* Action Buttons */
    .cta-action-buttons {
      display: flex;
      gap: 20px;
      margin-bottom: 35px;
    }
    
    .cta-btn-primary {
      flex: 1;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 15px;
      background: linear-gradient(135deg, #c28a6b 0%, #d9a685 100%);
      color: white;
      padding: 22px 40px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 700;
      font-size: 1.1rem;
      letter-spacing: 0.5px;
      overflow: hidden;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: 0 10px 40px rgba(255, 107, 53, 0.4);
    }
    
    .cta-btn-primary:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 60px rgba(255, 107, 53, 0.6);
    }
    
    .cta-btn-shine {
      position: absolute;
      top: 0;
      left: -100%;
      width: 50%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
      animation: ctaBtnShine 3s infinite;
    }
    
    @keyframes ctaBtnShine {
      0% { left: -100%; }
      50%, 100% { left: 150%; }
    }
    
    .cta-btn-icon {
      transition: transform 0.3s ease;
    }
    
    .cta-btn-primary:hover .cta-btn-icon {
      transform: translateX(5px);
    }
    
    .cta-btn-secondary {
      display: flex;
      align-items: center;
      gap: 10px;
      background: transparent;
      border: 2px solid #c28a6b;
      color: #c28a6b;
      padding: 22px 35px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 700;
      font-size: 1rem;
      transition: all 0.3s ease;
    }
    
    .cta-btn-secondary:hover {
      background: #c28a6b;
      color: white;
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
    }
    
    /* Trust Indicators */
    .cta-trust-indicators {
      display: flex;
      gap: 30px;
      padding-top: 30px;
      border-top: 1px solid rgba(255, 107, 53, 0.2);
    }
    
    .cta-trust-item {
      display: flex;
      align-items: center;
      gap: 10px;
      color: #999;
      font-size: 0.9rem;
    }
    
    .cta-trust-item i {
      color: #c28a6b;
      font-size: 1.1rem;
    }
    
    /* Decorative Elements */
    .cta-decoration {
      position: absolute;
      border-radius: 50%;
      filter: blur(80px);
      opacity: 0.3;
      animation: ctaDecoFloat 20s ease-in-out infinite;
    }
    
    .cta-decoration-1 {
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, #c28a6b 0%, transparent 70%);
      top: -200px;
      right: -200px;
    }
    
    .cta-decoration-2 {
      width: 300px;
      height: 300px;
      background: radial-gradient(circle, #c28a6b 0%, transparent 70%);
      bottom: -150px;
      left: 10%;
      animation-delay: 5s;
    }
    
    .cta-decoration-3 {
      width: 250px;
      height: 250px;
      background: radial-gradient(circle, #FF8C5A 0%, transparent 70%);
      top: 50%;
      right: 20%;
      animation-delay: 10s;
    }
    
    @keyframes ctaDecoFloat {
      0%, 100% { transform: translate(0, 0) scale(1); }
      33% { transform: translate(30px, -30px) scale(1.1); }
      66% { transform: translate(-30px, 30px) scale(0.9); }
    }
    
    /* Responsive */
    @media (max-width: 1024px) {
      .revolutionary-cta-container {
        gap: 60px;
      }
      
      .cta-visual-side {
        height: 500px;
      }
      
      .cta-main-title {
        font-size: 1.8rem;
      }
    }
    
    @media (max-width: 768px) {
      .revolutionary-cta-section {
        padding: 20px 20px;
      }
      
      .revolutionary-cta-container {
        grid-template-columns: 1fr;
        gap: 60px;
      }
      
      .cta-visual-side {
        height: 400px;
        order: -1;
      }
      
      .cta-floating-stats {
        flex-direction: column;
        bottom: -150px;
        left: 10%;
        right: 10%;
      }
      
      .cta-main-title {
        font-size: 1.2rem;
      }
      
      .cta-logo-large {
        height: 60px;
      }
      
      .cta-benefits-grid {
        grid-template-columns: 1fr;
      }
      
      .cta-action-buttons {
        flex-direction: column;
      }
      
      .cta-trust-indicators {
        flex-direction: column;
        gap: 15px;
      }
    }
    
    @media (max-width: 480px) {
      .revolutionary-cta-section {
        padding: 20px 15px;
      }
      
      .cta-visual-side {
        height: 350px;
      }
      
      .cta-stack-img {
        width: 90%;
        height: 65%;
      }
      
      .cta-main-title {
        font-size: 1.8rem;
      }
      
      .cta-description {
        font-size: 1rem;
      }
      
      .cta-btn-primary,
      .cta-btn-secondary {
        padding: 18px 30px;
        font-size: 0.95rem;
      }
    }
    
    /* ==================== LOCATION MAP SECTION ==================== */
    .location-map-section {
      padding: 30px 20px;
      background: #000000;
      position: relative;
      overflow: hidden;
    }
    
    .location-container {
      max-width: 1400px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }
    
    /* Section Header */
    .location-header {
      text-align: center;
      margin-bottom: 60px;
    }
    
    .location-title {
      font-size: 3rem;
      font-weight: 700;
      color: #FFFFFF;
      margin-bottom: 15px;
      letter-spacing: -1px;
    }
    
    .location-subtitle {
      font-size: 1.2rem;
      color: #CCCCCC;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
    }
    
    .location-subtitle i {
      color: #c28a6b;
      font-size: 1.3rem;
    }
    
    /* Content Grid */
    .location-content-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr;
      gap: 40px;
      align-items: stretch;
    }
    
    /* Map Wrapper */
    .location-map-wrapper {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(255, 107, 53, 0.3);
      border: 2px solid rgba(255, 107, 53, 0.3);
      height: 600px;
    }
    
    .google-map {
      width: 100%;
      height: 100%;
      filter: grayscale(0%) contrast(100%);
    }
    
    .map-overlay-badge {
      position: absolute;
      top: 20px;
      left: 20px;
      background: rgba(0, 0, 0, 0.9);
      backdrop-filter: blur(10px);
      padding: 15px 25px;
      border-radius: 50px;
      border: 2px solid #c28a6b;
      display: flex;
      align-items: center;
      gap: 12px;
      color: white;
      font-weight: 700;
      font-size: 1rem;
      box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
      animation: mapBadgePulse 3s ease-in-out infinite;
    }
    
    @keyframes mapBadgePulse {
      0%, 100% {
        box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
      }
      50% {
        box-shadow: 0 10px 40px rgba(255, 107, 53, 0.7);
      }
    }
    
    .map-overlay-badge i {
      color: #c28a6b;
      font-size: 1.2rem;
    }
    
    /* Location Info Panel */
    .location-info-panel {
      background: rgba(255, 255, 255, 0.03);
      border: 2px solid rgba(255, 107, 53, 0.2);
      border-radius: 20px;
      padding: 40px;
      display: flex;
      flex-direction: column;
      gap: 30px;
    }
    
    .location-info-header {
      display: flex;
      align-items: center;
      gap: 15px;
      padding-bottom: 20px;
      border-bottom: 2px solid rgba(255, 107, 53, 0.3);
    }
    
    .location-info-header i {
      font-size: 2rem;
      color: #c28a6b;
    }
    
    .location-info-header h3 {
      font-size: 1.8rem;
      font-weight: 700;
      color: #FFFFFF;
      margin: 0;
    }
    
    /* Location Details */
    .location-details {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 15px;
      flex: 1;
    }
    
    .location-detail-item {
      display: flex;
      gap: 15px;
      padding: 18px;
      background: rgba(255, 255, 255, 0.02);
      border-radius: 12px;
      border: 1px solid rgba(255, 107, 53, 0.15);
      transition: all 0.3s ease;
    }
    
    .location-detail-item:hover {
      background: rgba(255, 107, 53, 0.08);
      border-color: rgba(255, 107, 53, 0.4);
      transform: translateY(-3px) scale(1.02);
      box-shadow: 0 8px 20px rgba(255, 107, 53, 0.2);
    }
    
    .detail-icon {
      width: 45px;
      height: 45px;
      background: linear-gradient(135deg, rgba(255, 107, 53, 0.2) 0%, rgba(255, 107, 53, 0.1) 100%);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      border: 1px solid rgba(255, 107, 53, 0.3);
      transition: all 0.3s ease;
    }
    
    .location-detail-item:hover .detail-icon {
      background: linear-gradient(135deg, rgba(255, 107, 53, 0.3) 0%, rgba(255, 107, 53, 0.2) 100%);
      transform: scale(1.1);
    }
    
    .detail-icon i {
      color: #c28a6b;
      font-size: 1.3rem;
    }
    
    .detail-content {
      flex: 1;
      min-width: 0;
    }
    
    .detail-content h4 {
      font-size: 1rem;
      font-weight: 700;
      color: #FFFFFF;
      margin: 0 0 4px 0;
      line-height: 1.3;
    }
    
    .detail-content p {
      font-size: 0.85rem;
      color: #CCCCCC;
      margin: 0;
      line-height: 1.4;
    }
    
    /* CTA Button */
    .location-cta-button {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      background: linear-gradient(135deg, #c28a6b 0%, #d9a685 100%);
      color: white;
      padding: 18px 35px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 700;
      font-size: 1.1rem;
      transition: all 0.3s ease;
      box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
      margin-top: auto;
    }
    
    .location-cta-button:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 40px rgba(255, 107, 53, 0.6);
    }
    
    .location-cta-button i {
      font-size: 1.2rem;
    }
    
    /* Wave Divider 6 */
    .wave-divider-6 {
      background: #000000;
    }
    
    .wave-divider-6 svg {
      height: 110px;
    }
    
    .wave-divider-6 .wave-path {
      fill: #000000;
      filter: drop-shadow(0 -8px 25px rgba(255, 107, 53, 0.3));
      animation-duration: 18s;
      animation-delay: 15s;
    }
    
    /* Responsive */
    @media (max-width: 1024px) {
      .location-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }
      
      .location-map-wrapper {
        height: 500px;
      }
      
      .location-info-panel {
        padding: 30px;
      }
    }
    
    @media (max-width: 768px) {
      .location-map-section {
        padding: 30px 20px;
      }
      
      .location-title {
        font-size: 2.2rem;
      }
      
      .location-subtitle {
        font-size: 1rem;
        flex-direction: column;
      }
      
      .location-map-wrapper {
        height: 400px;
      }
      
      .location-info-panel {
        padding: 25px;
      }
      
      .location-details {
        grid-template-columns: 1fr;
        gap: 12px;
      }
      
      .location-detail-item {
        padding: 15px;
      }
      
      .detail-icon {
        width: 42px;
        height: 42px;
      }
      
      .detail-icon i {
        font-size: 1.2rem;
      }
      
      .wave-divider-6 svg {
        height: 70px;
      }
    }
    
    @media (max-width: 480px) {
      .location-map-section {
        padding: 30px 15px;
      }
      
      .location-title {
        font-size: 1.8rem;
      }
      
      .location-header {
        margin-bottom: 40px;
      }
      
      .location-map-wrapper {
        height: 350px;
      }
      
      .map-overlay-badge {
        top: 15px;
        left: 15px;
        padding: 12px 20px;
        font-size: 0.9rem;
      }
      
      .location-info-panel {
        padding: 20px;
        gap: 20px;
      }
      
      .location-info-header h3 {
        font-size: 1.5rem;
      }
      
      .detail-content h4 {
        font-size: 1rem;
      }
      
      .location-cta-button {
        padding: 16px 30px;
        font-size: 1rem;
      }
      
      .wave-divider-6 svg {
        height: 60px;
      }
    }
    
    /* ==================== FLOATING FORM & CALL ==================== */
    .floating-contact-wrap {
      position: fixed;
      bottom: 24px;
      right: 24px;
      z-index: 9998;
      display: flex;
      flex-direction: column;
      gap: 12px;
      pointer-events: none;
    }
    .floating-contact-wrap .floating-btn {
      pointer-events: auto;
      width: 56px;
      height: 56px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      text-decoration: none;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .floating-contact-wrap .floating-btn:hover {
      transform: scale(1.08);
      box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
      color: #fff;
    }
    .floating-contact-wrap .floating-btn i {
      font-size: 1.5rem;
    }
    .floating-form {
      background: var(--primary-color, #c28a6b);
    }
    .floating-form:hover {
      background: #b07a5a;
    }
    .floating-call {
      background: var(--primary-color, #c28a6b);
    }
    .floating-call:hover {
      background: #b07a5a;
    }
    @media (max-width: 479px) {
      .floating-contact-wrap {
        bottom: 16px;
        left: 16px;
        right: 16px;
        flex-direction: row;
        justify-content: space-between;
        gap: 0;
      }
      .floating-contact-wrap .floating-call {
        order: 1;
      }
      .floating-contact-wrap .floating-form {
        order: 2;
      }
      .floating-contact-wrap .floating-btn {
        width: 50px;
        height: 50px;
      }
      .floating-contact-wrap .floating-btn i {
        font-size: 1.35rem;
      }
    }
    
    /* ==================== SPARK TEMPLATE FIXES ==================== */
    
    /* Enable scrolling (override Spark template) */
    html, body {
      overflow-x: hidden !important;
      overflow-y: auto !important;
      height: auto !important;
      position: relative !important;
    }
    
    #content {
      position: relative !important;
      height: auto !important;
    }
    
    #content article {
      position: relative !important;
      display: block !important;
      opacity: 1 !important;
      visibility: visible !important;
    }
    
    /* FIX: Hero section must have proper height */
    #content article#home {
      min-height: 100vh !important;
      height: 100vh !important;
      display: flex !important;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      position: relative !important;
    }
    /* Hero content wrapper fills article so .home-text / .link-home (top: 75%) sit in center-bottom */
    #content article#home > .hero-content-inner {
      flex: 1 1 0;
      min-height: 0;
      width: 100%;
    }
    
    /* Overlay: dark at bottom fading to transparent toward middle */
    #content article#home::before {
      content: '' !important;
      position: absolute !important;
      top: 0 !important;
      left: 0 !important;
      right: 0 !important;
      bottom: 0 !important;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, transparent 50%) !important;
      z-index: 1 !important;
    }
    

    
