 /* 1. FONT IMPORT & SETUP */
        @import url('https://api.fontshare.com/v2/css?f[]=satoshi@700,500,400&display=swap');

        /* 2. CSS RESET & ROOT VARIABLES */
        :root {
            --dark-blue: #bd9e6f;
            --gold: #e19e91;
            --light-gray-bg: #f4f5f9;
            --card-dark-blue: #10183c;
            --text-light: #e0e0e0;
            --border-color: rgba(255, 255, 255, 0.1);
            --border-radius-sm: 8px;
            --border-radius-md: 12px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Satoshi', sans-serif;
            background-color: #fff;
            color: #000000;
            overflow-x: hidden;
        }

        /* 3. UTILITY & ANIMATION CLASSES */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        section {
            padding: 30px 0;
        }

        h2.section-title {
            font-size: 2.4rem;
            font-weight: 400;
            color: var(--dark-blue);
            margin-bottom: 22px;
            text-align: center;
        }

        .btn {
            padding: 16px 32px;
            border: none;
            border-radius: var(--border-radius-sm);
            font-size: 1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary {
            background-color: var(--gold);
            color: #fff;
        }

        .btn-primary:hover {
            background-color: #e0961e;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(249, 168, 38, 0.3);
        }
        
        /* Animation classes for Intersection Observer */
        .fade-in-up {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }

        .fade-in-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* 4. HEADER & NAVIGATION */
        .main-header {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 100;
            padding: 20px 0;
            background: linear-gradient(180deg, rgba(12, 19, 47, 0.5) 0%, rgba(12, 19, 47, 0) 100%);
        }

        .main-header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
        }

        .logo img {
            height: 40px;
        }

        .main-nav ul {
            list-style: none;
            display: flex;
            gap: 35px;
        }

        .main-nav a {
            color: #fff;
            text-decoration: none;
            font-size: 1rem;
            font-weight: 500;
            position: relative;
            padding-bottom: 5px;
        }
        
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--gold);
            transition: width 0.3s ease;
        }

        .main-nav a:hover::after, .main-nav a.active::after {
            width: 100%;
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 20px;
        }
        
        .header-actions .btn-outline {
            color: white;
            border: 1px solid white;
            padding: 10px 20px;
            border-radius: var(--border-radius-sm);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .header-actions .btn-outline:hover {
            background-color: white;
            color: var(--dark-blue);
        }

        /* 5. HERO SECTION */
        .hero {
            height: 100vh;
            min-height: 700px;
            /* Desktop Background Image */
            background-image: url('images/palm_jebel_ali_cover.webp');
            background-repeat: no-repeat;
            background-position: center center;
            background-size: cover;
            background-attachment: fixed; /* Parallax Effect for Desktop */
            display: flex;
            align-items: center;
            color: #fff;
            position: relative;
        }
        
        .hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgb(0 0 0 / 21%);
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
        }

        .hero-content h1 {
            font-size: 6rem;
            font-weight: 700;
        }

        .hero-content .subtitle {
            font-size: 1.75rem;
            font-weight: 500;
            margin: 10px 0 30px;
        }

        .hero-info {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 40px;
        }

        .hero-info span {
            border: 1px solid rgba(255,255,255,0.5);
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 1.2rem;
            background-color: #0000004a;
        }
        
        .breadcrumbs {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 10px;
            margin-top: 50px;
            font-size: 0.9rem;
        }
        
        .breadcrumbs i {
            font-size: 1.2rem;
        }
        
        .breadcrumbs span {
            opacity: 0.7;
        }

        /* 6. PROJECT DETAILS SECTION */
        .project-details {
            background-color: #fff;
        }
        
        .details-wrapper {
            display: flex;
            gap: 50px;
            align-items: flex-start;
        }
        
        .details-description {
            flex: 2;
        }

        .details-description h3 {
            font-size: 1.5rem;
            margin-top: 30px;
            margin-bottom: 15px;
        }

        .details-description p {
            line-height: 1.8;
            color: #555;
        }

        .details-summary-card {
            flex: 1;
            background-color: var(--dark-blue);
            color: #fff;
            padding: 40px;
            border-radius: var(--border-radius-md);
            position: sticky;
            top: 100px;
        }

        .details-summary-card h3 {
            font-size: 2rem;
            margin-bottom: 30px;
        }
        
        .summary-item {
            display: flex;
            justify-content: space-between;
            padding: 20px 0;
            border-bottom: 1px solid var(--border-color);
        }
        
        .summary-item:last-of-type {
            border-bottom: none;
        }
        
        .summary-item .label {
            color: var(--text-light);
            font-weight: 400;
        }
        
        .summary-item .value {
            font-weight: 700;
        }

        .details-summary-card .btn {
            width: 100%;
            margin-top: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        /* 7. TABS (for Gallery & Floor Plans) */
        .tabs {
            display: flex;
            justify-content: center;
            margin-bottom: 40px;
            border: 1px solid #e0e0e0;
            border-radius: var(--border-radius-sm);
            overflow: hidden;
            width: fit-content;
            margin-left: auto;
            margin-right: auto;
        }
        
        .tab-button {
            padding: 15px 40px;
            cursor: pointer;
            background-color: var(--light-gray-bg);
            color: var(--dark-blue);
            border: none;
            font-size: 1rem;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .tab-button.active {
            background-color: var(--dark-blue);
            color: #fff;
        }
        
        .tab-content {
            display: none;
        }
        
        .tab-content.active {
            display: block;
        }
        
        /* 8. GALLERY SECTION */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: var(--border-radius-md);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
        }
        
        .gallery-item img:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }
        
        /* 9. FLOOR PLANS SECTION */
        .floor-plans {
             background-color: var(--light-gray-bg);
        }
        
        .floor-plan-viewer {
            display: flex;
            gap: 30px;
            background: #fff;
            padding: 30px;
            border-radius: var(--border-radius-md);
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        }
        
        .floor-plan-viewer img {
            max-width: 100%;
            border-radius: var(--border-radius-sm);
        }

        /* 10. PAYMENT PLANS SECTION */
        .payment-plan-wrapper {
             text-align: center;
        }

        .payment-plan-cards {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 40px;
        }
        
        .payment-card {
            background-color: var(--light-gray-bg);
            padding: 40px;
            border-radius: var(--border-radius-md);
            width: 280px;
            text-align: center;
        }

        .payment-card .percentage {
            font-size: 3rem;
            font-weight: 700;
            color: var(--gold);
            margin-bottom: 10px;
        }

        .payment-card .description {
            font-weight: 500;
            color: #555;
        }

        /* 11. FEATURES & AMENITIES SECTION */
        .features {
            background-color: var(--light-gray-bg);
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
            gap: 40px 20px;
            text-align: center;
        }

        .feature-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
        }
        
        .feature-item img {
            height: 50px;
            width: 50px;
            object-fit: contain;
        }
        
        .feature-item span {
            font-weight: 500;
        }

        /* 12. LOCATION SECTION */
        .location-map iframe {
            width: 100%;
            height: 500px;
            border: 0;
            border-radius: var(--border-radius-md);
        }
        
        /* 13. SIMILAR PROJECTS SECTION */
        .similar-projects {
            background-color: var(--light-gray-bg);
        }
        
        .slider-wrapper {
            position: relative;
        }

        .slider-container {
            overflow: hidden;
        }
        
        .slider-track {
            display: flex;
            gap: 30px;
            transition: transform 0.5s ease-in-out;
        }

        .project-card {
            flex: 0 0 calc(33.333% - 20px);
            background: #fff;
            border-radius: var(--border-radius-md);
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }
        
        .project-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        }
        
        .card-image {
            height: 250px;
            position: relative;
        }

        .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .card-tag {
            position: absolute;
            top: 15px;
            left: 15px;
            background: rgb(203 37 80 / 95%);
            color: #fff;
            padding: 5px 12px;
            border-radius: 5px;
            font-size: 0.8rem;
        }
        
        .card-content {
            padding: 25px;
        }
        
        .card-content h4 {
            font-size: 1.25rem;
            margin-bottom: 10px;
        }

        .card-content .price {
            font-size: 0.9rem;
            color: #555;
            margin-bottom: 15px;
        }
        
        .card-location {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #555;
            font-size: 0.9rem;
            margin-bottom: 15px;
        }
        
        .card-buttons {
            display: flex;
            gap: 10px;
            margin-top: 20px;
        }
        
        .card-buttons .btn {
            flex: 1;
            padding: 12px;
            font-size: 0.9rem;
        }

        .btn-secondary {
            background-color: #eef0f3;
            color: var(--dark-blue);
        }
        .btn-secondary:hover {
            background-color: #dfe3e8;
        }
        
        .slider-controls {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: calc(100% + 80px);
            left: -40px;
            display: flex;
            justify-content: space-between;
        }
        
        .slider-arrow {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: #fff;
            color: var(--dark-blue);
            border: 1px solid #e0e0e0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            cursor: pointer;
            font-size: 1.2rem;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .slider-arrow:hover {
            background: var(--dark-blue);
            color: #fff;
        }

        /* 14. FOOTER */
        footer {
            background-color: #000000;
            color: var(--text-light);
            padding: 80px 0 30px;
            /* background-image: url('images/palm_vector.svg'); */
            background-repeat: no-repeat;
            background-position: bottom center;
            background-size: cover;
        }
        
        .footer-top {
            background-color:#e19e9100;
            border: 1px solid #3e3e3e;
            border-radius: var(--border-radius-md);
            padding: 50px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 60px;
        }

        .footer-top h3 {
            font-size: 1.8rem;
            /* max-width: 300px; */
        }
        
        .footer-form {
            display: flex;
            gap: 15px;
            width: 60%;
        }

        .footer-form input {
            flex: 1;
            padding: 16px;
            border: 1px solid var(--border-color);
            background-color: transparent;
            border-radius: var(--border-radius-sm);
            color: #fff;
            font-size: 1rem;
        }
        
        .footer-form input::placeholder {
            color: #aaa;
        }
        
        .footer-bottom {
            display: flex;
            justify-content: space-between;
            gap: 50px;
        }
        
        .footer-about {
            flex: 1;
            max-width: 250px;
        }
        
        .footer-about .logo img {
            height: 40px;
            margin-bottom: 20px;
        }
        
        .social-icons {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 20px;
        }

        .social-icons a {
            color: #fff;
            background: rgba(255, 255, 255, 0.1);
            width: 40px;
            height: 40px;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 50%;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .social-icons a:hover {
            background-color: var(--gold);
            color: var(--dark-blue);
        }
        
        .footer-links {
            flex: 3;
            display: flex;
            justify-content: space-between;
            gap: 40px;
        }

        .footer-links h4 {
            font-size: 1.1rem;
            margin-bottom: 20px;
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links ul li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: var(--text-light);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--gold);
        }
        
        .footer-bottom-bar {
            border-top: 1px solid var(--border-color);
            margin-top: 50px;
            padding-top: 30px;
            padding-bottom: 40px;
            text-align: center;
            font-size: 0.9rem;
            color: #aaa;
        }

        /* 15. RESPONSIVENESS - MEDIA QUERIES */

        /* Tablet View (e.g., iPads) */
        @media (max-width: 1024px) {
            h2.section-title {font-size: 2.1rem;}
            .hero-content h1 { font-size: 4.5rem; }
            
            .details-wrapper { flex-direction: column; }
            .details-summary-card { 
                position: static; 
                width: 100%; 
                margin-top: 40px;
            }

            .project-card { 
                flex: 0 0 calc(50% - 15px); 
            }
            .slider-track {
                padding-bottom: 20px; /* Add space for scrollbar if it appears */
            }

            .footer-top { 
                flex-direction: column; 
                gap: 30px; 
                text-align: center; 
                padding: 40px 25px;
            }
            .footer-form { 
                flex-direction: column; 
                width: 100%; 
            }
        }

        /* Mobile View (e.g., iPhones, Android phones) */
        @media (max-width: 768px) {
            section {padding: 20px 0;}
            
            .main-header .container { padding: 0 20px; }
            .main-nav, .header-actions .btn-outline { 
                display: none; /* Hide nav and button for simplicity */
            }
            .main-header .container { justify-content: center; } /* Center logo */
            
            /* --- HERO IMAGE SWAP FOR MOBILE --- */
            .hero {
                /* Mobile Background Image */
                background-image: url('images/palm_jebel_ali_cover.webp'); 
                background-attachment: scroll; /* 'fixed' can be jumpy on mobile, 'scroll' is smoother */
                min-height: 650px; /* Adjust height for smaller screens */
            }

            .hero-content { text-align: center; }
            .hero-content h1 { font-size: 3.5rem; }
            .hero-content .subtitle { font-size: 1.25rem; }
            .hero-info { justify-content: center; }
            .breadcrumbs { justify-content: center; gap: 5px 10px; }
            
            .tab-button {
                padding: 12px 20px;
                font-size: 0.9rem;
            }

            .floor-plan-viewer { flex-direction: column; padding: 20px; }
            
            .payment-plan-cards { 
                flex-direction: column; 
                align-items: center; 
            }

            .location-map iframe {
                height: 400px;
            }

            /* Make slider horizontally scrollable on mobile */
            .slider-container {
                overflow-x: auto;
                scroll-snap-type: x mandatory;
                -ms-overflow-style: none;  /* IE and Edge */
                scrollbar-width: none;  /* Firefox */
            }
            .slider-container::-webkit-scrollbar {
                display: none; /* Hide scrollbar for Chrome, Safari, Opera */
            }
            .slider-track {
                justify-content: flex-start;
            }
            .project-card {
                flex: 0 0 85%; /* Each card takes up 85% of the screen */
                scroll-snap-align: start;
            }
            .slider-controls { 
                display: none; 
            }

            .footer-top h3 { font-size: 1.5rem; }

            .footer-bottom { 
                flex-direction: column; 
                text-align: center; 
            }
            .footer-about { 
                max-width: 100%; 
                margin-bottom: 40px; 
            }
            .social-icons { 
                justify-content: center; 
            }
            .footer-links { 
                flex-direction: column; 
                gap: 30px;
                align-items: center;
            }
            .footer-links .links-col {
                width: 100%;
            }

            .footer-bottom-bar { font-size: 0.8rem; }
        }
        
         /* 16. MODAL STYLES */
        .modal {
            position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 1000; display: flex;
            align-items: center; justify-content: center; padding: 20px; opacity: 0; pointer-events: none;
            transition: opacity 0.3s ease-in-out;
        }
        .modal.active { opacity: 1; pointer-events: all; }
        .modal-overlay {
            position: absolute; top: 0; left: 0; width: 100%; height: 100%;
            background-color: rgba(12, 19, 47, 0.8); cursor: pointer; z-index: 1;
        }
        .modal-content {
            position: relative; z-index: 2; background: #fff; border-radius: var(--border-radius-md);
            max-width: 900px; width: 100%; display: flex; overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.2); transform: scale(0.95);
            transition: transform 0.3s ease-in-out;
        }
        .modal.active .modal-content { transform: scale(1); }
        .modal-close {
            position: absolute; top: 15px; right: 15px; background: transparent; border: none;
            font-size: 1.8rem; color: #888; cursor: pointer; z-index: 10;
        }
        .modal-close:hover { color: #333; }
        .modal-info { flex-basis: 45%; background-color: var(--dark-blue); color: #fff; padding: 50px; display: flex; flex-direction: column; justify-content: center; }
        .modal-info h3 { font-size: 2.5rem; line-height: 1.2; margin-bottom: 40px; }
        .modal-developer { display: flex; align-items: center; gap: 20px; }
        .modal-developer img { height: 60px; width: 60px; background: #fff; padding: 5px; border-radius: var(--border-radius-sm); }
        .modal-developer-name span { display: block; }
        .modal-developer-name span:first-child { font-weight: 700; }
        .modal-developer-name span:last-child { font-size: 0.9rem; opacity: 0.7; }
        .modal-image { flex-basis: 45%; background: url('images/01.jpeg') no-repeat center center; background-size: cover; }
        .modal-form-container { flex-basis: 55%; padding: 50px; }
        #brochureModal .modal-form-container { text-align: center; }
        #brochureModal .modal-form-container h3 { font-size: 2rem; margin-bottom: 15px; }
        #brochureModal .modal-form-container p { color: #666; margin-bottom: 30px; }
        
        .form-group { margin-bottom: 20px; position: relative; } /* Added position relative for potential error messages */
        
        .modal-form-container input[type="text"],
        .modal-form-container input[type="email"],
        .modal-form-container input[type="tel"] {
            width: 100%;
            padding: 15px;
            border: 1px solid #ddd;
            border-radius: var(--border-radius-sm);
            font-size: 1rem;
            font-family: 'Satoshi', sans-serif;
            height: 52px; /* Set a consistent height */
        }

        /* --- START: CSS FOR intl-tel-input --- */
        .iti {
            width: 100%;
        }
        .iti__tel-input {
            /* This will inherit most styles from the rule above */
            padding-left: 95px !important; /* Make space for the flag dropdown + dial code */
        }
        /* --- END: CSS FOR intl-tel-input --- */
        
        .consent-group { display: flex; gap: 10px; align-items: flex-start; margin: 25px 0; }
        .consent-group label { font-size: 0.8rem; color: #666; line-height: 1.5; }
        .consent-group input[type="checkbox"] { margin-top: 3px; }
        .modal-form-container .btn { width: 100%; }

        /* 17. RESPONSIVENESS */
        @media (max-width: 768px) {
            .hero { background-image: url('images/palm_jebel_ali_cover.webp'); background-attachment: scroll; }
            .details-wrapper { flex-direction: column; }
            .details-summary-card { position: static; width: 100%; margin-top: 40px; }
            /* Modal Responsiveness */
            .modal-content { flex-direction: column; max-height: 90vh; overflow-y: auto; }
            .modal-info, .modal-image { display: none; }
            .modal-form-container { padding: 40px 25px; }
        }
        
        

/* Container for the arrow */
.scroll-down-link {
  position: absolute;
  bottom: -7rem; /* 2rem from the bottom */
  left: 50%;
  transform: translateX(-50%); /* Centers the link horizontally */
  cursor: pointer;
}

/* The Arrow Shape (created with borders) */
.scroll-down-arrow {
  display: block;
  width: 20px;
  height: 20px;
  
  /* Create a chevron shape using borders */
  border-right: 3px solid white;
  border-bottom: 3px solid white;
  
  /* Hide the top and left borders */
  border-top: 0;
  border-left: 0;

  /* Rotate the square to make it a chevron */
  transform: rotate(45deg);
}


/* Add this to your CSS file */

/* 1. Define the animation */
@keyframes bounce {
  0%, 100% {
    transform: translateY(0) rotate(45deg);
    opacity: 1;
  }
  50% {
    transform: translateY(15px) rotate(45deg);
    opacity: 0.7;
  }
}

/* 2. Apply the animation to the arrow */
.scroll-down-arrow {
  /* ... (keep the previous styles) ... */
  animation: bounce 2s infinite; /* name, duration, iteration */
  animation-timing-function: ease-in-out;
}

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

.scroll-down-link svg {
  animation: bounce-svg 2s infinite ease-in-out;
}




/* Sticky "Register Now" Button */
.sticky-cta-button {
  /* --- Positioning and Initial State (Hidden) --- */
  position: fixed;
  top: 52%;
  right: -200px; /* Start completely off-screen to the right */
  transform: translateY(-50%); /* Vertically center it */
  z-index: 1000; /* Ensure it's on top of other content */
  opacity: 0; /* Start fully transparent */
  font-size: 12px;
  visibility: hidden; /* Hide from screen readers and interaction */
  
  /* Smooth transition for all properties */
  transition: all 0.4s ease-in-out;

  /* --- Visual Styling --- */
  /* background-color: #216d60; /* A nice, vibrant CTA color */
  background: linear-gradient(90deg,rgba(163, 0, 0, 1) 0%, rgba(199, 4, 4, 1) 50%, rgba(255, 0, 0, 1) 100%);
  color: white;
  padding: 11px 9px;
  text-decoration: none;
  font-weight: lighter;
  
  /* Vertical text orientation */
  writing-mode: vertical-rl;
  text-orientation: mixed;
  letter-spacing: 2px;
  text-transform: uppercase;

  /* Rounded corners on the left side */
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  box-shadow: -3px 3px 12px rgba(0, 0, 0, 0.25);
}

/* --- The Visible State --- */
/* We will add this class with JavaScript */
.sticky-cta-button.visible {
  right: 0; /* Slide it into view */
  opacity: 1; /* Make it fully visible */
  visibility: visible; /* Make it accessible and interactive */
}



.pulse-button {
  padding: 10px 21px;
  background-color: #0fae93;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  position: relative; /* Needed for pseudo-elements if used for border */
  overflow: hidden; /* Important for containing expanding shadows/borders */

  /* Apply the animation */
  animation: pulseBorder 2s infinite alternate; /* 'alternate' makes it smooth */
}

@keyframes pulseBorder {
  0% {
    box-shadow: 0 0 0 0 #05a387; /* Initial state: no shadow */
  }
  50% {
    box-shadow: 0 0 0 15px rgba(0, 123, 255, 0); /* Expanded, fading shadow */
  }
  100% {
    box-shadow: 0 0 0 0 #05a387; /* Return to initial state */
  }
}



.float:hover {
  background-color: #2EE59D;
  box-shadow: 0px 15px 20px rgba(46, 229, 157, 0.4);
  color: #fff;
  transform: translateY(-7px);
}

.my-float{
	margin-top:16px;
}

.floattel{
	position:fixed;
	width:60px;
	height:60px;
	bottom:5px;
	right:90px;
	background-color:#32bcce;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}

.my-floattel{
	margin-top:16px;
}

.floattel:hover {
  background-color: #32bcce;
  box-shadow: 0px 15px 20px rgba(46, 229, 157, 0.4);
  color: #fff;
  transform: translateY(-7px);
}


.floatte2{
	display:none;
}

@media only screen and (max-width: 1023px) {
 
 .floatte2{
	 display:block;
	 position:fixed;
	 width:60px;
	 height:60px;
	 bottom:5px;
	 /* right: 158px; */
	 background-color: #007bff;
	 color:#FFF;
	 border-radius: 0 5px 5px 0;
	 text-align:center;
	 font-size:30px;
	 /* box-shadow: 2px 2px 3px #999; */
	 z-index:100;
}

.my-floatte2{
	margin-top:16px;
}
}

.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:5px;
	right: 0px;
	background-color:#25d366;
	color:#FFF;
	border-radius: 5px 0 0 5px;
	text-align:center;
	font-size:30px;
	box-shadow: 2px 2px 3px #999;
	z-index:100;
	/*animation: btn-pulse 1.5s infinite cubic-bezier(0.66, 0, 0, 1);*/
}


@keyframes btn-pulse {
    0% {
        box-shadow: 2px 3px 7px transparent;
    }
    20% {
        box-shadow: 2px 3px 7px #25d366;        
    }
    100% {
        box-shadow: 0 0 0 15px rgba(232, 76, 61, 0);
    }  
}


/* ============================================= */
/* CSS for the Animated Border Button            */
/* ============================================= */

/* 1. The Main Button Styles */
.animated-border-button {
    /* Positioning and Layout */
    position: relative; /* Essential for the animation effect */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px; /* Space between icon and text */
    
    /* Sizing and Appearance - This will override .btn-primary styles */
    padding: 18px 36px;
    border: none; /* Remove any default borders */
    border-radius: 50px; /* The pill shape */
    background: #000; /* The black background */
    color: white !important; /* Text and icon color */
    
    /* Font and Text */
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    
    /* This is crucial for the border effect */
    overflow: hidden; 
}

/* 2. The Rotating Border (The Magic) */
.animated-border-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 300%; /* Taller than wide to cover the pill shape ends */
    z-index: 1;

    /* A conic gradient creates the two white segments */
    background: conic-gradient(
        from 0deg,
        transparent 0deg 90deg,
        white 90deg 110deg, /* First white segment */
        transparent 110deg 270deg,
        white 270deg 290deg, /* Second white segment */
        transparent 290deg 360deg
    );

    /* The Animation */
    animation: rotateBorder 4s linear infinite;
}

/* 3. A "mask" to create the border thickness */
.animated-border-button::after {
    content: '';
    position: absolute;
    inset: 3px; /* This creates the border thickness */
    background: #000; /* Must match the button's background */
    border-radius: 50px;
    z-index: 2;
}

/* 4. The Content (Icon and Text) needs to be on top */
/* The > * selector targets the <i> icon and the text inside the button */
.animated-border-button > * {
    position: relative; /* Bring content above the pseudo-elements */
    z-index: 3;
}

/* 5. The Keyframe Animation for the rotation */
@keyframes rotateBorder {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}


  /*CTA CSS Styles for the Section */

   /* 1. The Main Section Container */
    .cta-section {
        /* You can use your own font-family */
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        
        /* Sizing and Centering */
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 100px 20px;
        text-align: center;
        
        /* Background Image & Overlay */
        position: relative;
        background-color: #333; /* Fallback color */
        /* IMPORTANT: Replace with your image URL */
        background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://i.imgur.com/GghmJ3R.jpeg');
        background-size: cover;
        background-position: center;
        color: #ffffff;
    }

    /* 2. The Content Wrapper */
    .cta-content {
        max-width: 800px;
    }

    /* 3. The Typography */
    .cta-headline {
        font-size: 2.8rem;
        font-weight: 800;
        letter-spacing: 1px;
        line-height: 1.2;
        text-transform: uppercase;
        margin: 0 0 10px 0;
    }

    .cta-subheadline {
        font-size: 1.5rem;
        font-weight: 400;
        letter-spacing: 1px;
        margin: 0 0 40px 0;
        text-transform: uppercase;
    }

    /* 4. The Button Container and Styles */
    .cta-buttons {
        display: flex;
        justify-content: center;
        gap: 15px;
        flex-wrap: wrap; /* Allows buttons to wrap on smaller screens */
    }

    .cta-button {
        display: inline-block;
        padding: 15px 35px;
        border-radius: 8px;
        text-decoration: none;
        font-size: 1rem;
        font-weight: bold;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
        min-width: 200px;
    }

    .cta-button:hover {
        transform: translateY(-3px);
    }

    /* Primary Button: "Download Brochure" */
    .cta-primary {
        background-color: #ffffff;
        color: #111111;
        border: 2px solid #ffffff;
    }

    /* Secondary Button: "Book Now" */
    .cta-secondary {
        background-color: transparent;
        color: #ffffff;
        border: 2px solid #ffffff;
    }

    /* --- 5. Responsive Adjustments for Mobile --- */
    @media (max-width: 768px) {
        .cta-section {
            padding: 80px 20px;
        }

        .cta-headline {
            font-size: 2rem;
        }

        .cta-subheadline {
            font-size: 1.1rem;
            margin-bottom: 30px;
        }
        
        .cta-button {
            width: 100%;
            max-width: 300px; /* Optional: constrain button width on mobile */
        }
    }
    
    
    
     .sticky-cta-container {
        position: fixed;
        z-index: 1000;
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    }
    

    /* --- MOBILE STYLES (Default View) --- */
    .cta-desktop {
        display: none;
    }

    .cta-mobile {
        display: flex;
        width: 100%;
    }
    
    .sticky-cta-container {
        bottom: 0;
        left: 0;
        right: 0;
    }

    .cta-mobile-button {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 12px 10px;
        color: white;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1rem;
    }
    
    .cta-mobile-button.cta-call { background-color: #4285F4; }
    .cta-mobile-button.cta-whatsapp { background-color: #25D366; }
    
    /* Updated to style the Font Awesome <i> tag */
    .cta-mobile-button i {
        font-size: 1.1rem;
    }

    /* --- DESKTOP STYLES (Applies on screens 768px wide or larger) --- */
    @media (min-width: 768px) {
        .cta-mobile {
            display: none;
        }
        .cta-desktop {
            display: flex;
            flex-direction: column;
            gap: 8px;
            padding: 8px;
            background-color: #11111161;
            border-radius: 50px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        }
        
        .sticky-cta-container {
            bottom: 25px;
            right: 25px;
            left: auto;
        }

        .cta-desktop-button {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 54px;
            height: 54px;
            border-radius: 50%;
            text-decoration: none;
            transition: transform 0.2s ease;
        }

        .cta-desktop-button:hover {
            transform: scale(1.1);
        }
        
        .cta-desktop-button.cta-call { background-color: #4285F4; }
        .cta-desktop-button.cta-whatsapp { background-color: #25D366; }
        
        /* Updated to style the Font Awesome <i> tag */
        .cta-desktop-button i {
            color: white;
            font-size: 1.8rem;
        }
    }
    
    
    
    /* General styling for the section container */
.master-plan-section {
  width: 100%;
  max-width: 1400px; /* Adjust max-width as needed */
  margin: 10px auto; /* Centers the section and adds space above/below */
  padding: 20px;
  box-sizing: border-box; /* Ensures padding doesn't affect width */
  background-color: #ffffff;
}

/* Styling for the title */
.master-plan-title {
  font-family: 'Georgia', serif; /* A font similar to the screenshot */
  color: #c0ab58; /* Gold color from the image */
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 30px; /* Space between title and images */
  font-weight: 500;
}

/* This is the container for the two images (like a Bootstrap row) */
.master-plan-grid {
  display: flex; /* Aligns children (images) in a row */
  gap: 20px; /* Creates a space between the two images */
}

/* Wrapper for each image */
.master-plan-image-wrapper {
  flex: 1; /* Makes both images take up equal space */
  min-width: 0; /* Prevents images from overflowing on smaller flex containers */
}

/* Styling for the images themselves */
.master-plan-image-wrapper img {
  width: 100%; /* Makes image fill its container */
  height: auto; /* Maintains aspect ratio */
  display: block; /* Removes any extra space below the image */
}


/* --- Responsive Design for Mobile --- */
/* This media query applies styles for screens 768px wide or smaller */
@media (max-width: 768px) {
  
  .master-plan-grid {
    flex-direction: column; /* Stacks the images vertically */
  }

  .master-plan-title {
    font-size: 2rem; /* Makes the title a bit smaller on mobile */
  }

  .master-plan-section {
    padding: 15px; /* Reduces padding on smaller screens */
  }
}




/* --- General Section Styling --- */
.about-section {
  width: 100%;
  max-width: 1200px;
  margin: 36px auto;
  padding: 20px;
  box-sizing: border-box;
}

/* --- Title Styling --- */
.about-title {
  color: #c0ab58; /* Gold color from the image */
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 500;
}

/* --- Content Grid Layout (for Desktop) --- */
.about-content-grid {
  display: flex;
  align-items: center; /* Vertically aligns text and image */
  gap: 40px; /* Space between the text and image columns */
}

/* --- Text Column Styling --- */
.about-text-column {
  flex: 1.5; /* Makes the text column wider than the image column */
  color: #333;
  line-height: 1.7;
}

.about-text-column p {
  margin: 0 0 20px 0; /* Space between paragraphs */
}

.about-text-column p:last-child {
  margin-bottom: 0; /* Removes bottom margin from the last paragraph */
}

.about-text-column a {
  color: #c0ab58;
  text-decoration: underline;
  font-weight: bold;
}

.about-text-column a:hover {
  text-decoration: none; /* Optional: remove underline on hover */
}


/* --- Image Column Styling --- */
.about-image-column {
  flex: 1; /* Assigns space for the image column */
}

.about-image-column img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px; /* Optional: adds slightly rounded corners */
}

/* --- Responsive Design for Mobile & Tablets --- */
@media (max-width: 992px) {
  /* On smaller screens, stack the columns vertically */
  .about-content-grid {
    flex-direction: column;
  }
  
  .about-title {
    font-size: 2.2rem; /* Make title smaller on mobile */
  }

  /* Add some space between the text and image when stacked */
  .about-image-column {
    margin-top: 30px;
    width: 100%; /* Ensure image takes full width in the column layout */
  }
}



    /*
=====================================================
  STYLES FOR THE HERO SECTION INQUIRY FORM
  - These are scoped and will not affect other forms
=====================================================
*/

/* Container for the form inside the hero section */
.hero-form-container {
  margin-top: 40px; /* Space above the form */
  width: 100%;
  max-width: 1200px; /* Adjust as needed */
  padding: 0 15px; /* Padding for mobile */
  box-sizing: border-box;
}

/* This is the main flex wrapper for the inputs and button */
.hero-form-fields {
  display: flex;
  flex-direction: column; /* MOBILE-FIRST: Stack everything vertically by default */
  gap: 15px; /* Vertical spacing on mobile */
}

/* General styling for each input field */
.hero-form-group input[type="text"],
.hero-form-group input[type="email"],
.hero-form-group input[type="tel"] {
  width: 100%;
  padding: 16px;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #ffffff;
  color: #333;
  box-sizing: border-box;
  -webkit-appearance: none; /* Fix for iOS input styling */
}

/* Styling for the phone input library container */
.hero-form-group .iti {
  width: 100%;
}
.hero-form-group .iti input {
    color: #333 !important; /* Ensure text color is consistent */
}

/* Form submission button */
.hero-form-button {
  width: 100%; /* Full width on mobile */
  padding: 16px;
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
  background-color: #d4a79a; /* Dusty rose color from screenshot */
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  -webkit-appearance: none;
}

.hero-form-button:hover {
  background-color: #c89a8c; /* Slightly darker on hover */
}

/* Consent checkbox styles */
.hero-consent-group {
  margin-top: 15px;
  text-align: center;
}

.hero-consent-group label {
  font-size: 0.8rem;
  color: #f0f0f0;
  vertical-align: middle;
}

.hero-consent-group input[type="checkbox"] {
  vertical-align: middle;
  margin-right: 5px;
}


/*
=====================================================
  DESKTOP STYLES - Media Query for larger screens
=====================================================
*/
@media (min-width: 992px) {
  
  .hero-form-container {
    padding: 0; /* Remove horizontal padding on desktop */
  }
  
  /* This is the key part for the single-line layout */
  .hero-form-fields {
    /* flex-direction: row; */ /* Align items in a row */
    gap: 15px; /* Horizontal spacing on desktop */
  }

  /* Make the input fields grow to fill available space */
  .hero-form-group {
    flex: 1; /* This is crucial for the fields to expand */
  }
  
  /* Stop the button from growing and set its width automatically */
  .hero-form-button {
    width: auto;
    flex-shrink: 0; /* Prevents the button from shrinking */
    padding-left: 30px;
    padding-right: 30px;
  }
}


/* --- Main Section Styling --- */
        .landmark-section {
            background-color: var(--bg-color);
            padding: 50px 20px;
        }

        .landmark-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            gap: 40px;
        }

        /* --- Left Column: Info Text --- */
        .landmark-info {
            flex: 1; /* Takes up half the space */
        }

        .landmark-title {
            font-family: var(--font-serif);
            font-size: 2rem; /* Large font size for the headline */
            font-weight: 700;
            color: var(--text-color);
            line-height: 1.1;
            margin: 0 0 25px 0;
            text-transform: uppercase;
        }

        .landmark-description {
            font-family: var(--font-sans);
            font-size: 1rem;
            color: var(--text-color);
            line-height: 1.6;
            max-width: 500px;
        }

        /* --- Right Column: Stats Grid --- */
        .landmark-stats-grid {
            flex: 1; /* Takes up the other half of the space */
            display: grid;
            grid-template-columns: 1fr 1fr; /* Creates a 2x2 grid */
            gap: 20px;
        }

        .stat-card {
            border: 1px solid rgb(74 57 57 / 14%);
            border-radius: 8px;
            padding: 19px 9px;
            text-align: center;
        }

        .stat-value {
            font-family: var(--font-serif);
            font-size: 1.6rem; /* Large font for the stat numbers */
            font-weight: 700;
            color: var(--text-color);
            line-height: 1.2;
            margin: 0;
        }

        .stat-label {
            font-family: var(--font-sans);
            font-size: 1rem;
            color: var(--text-color);
            margin: 10px 0 0 0;
        }
        
        /* --- Responsive Design for Tablets and Mobile --- */
        @media (max-width: 992px) {
            .landmark-container {
                flex-direction: column; /* Stack the columns on top of each other */
                text-align: center;
            }

            .landmark-title {
                font-size: 3.5rem; /* Reduce font size for smaller screens */
            }

            .landmark-description {
                margin-left: auto;
                margin-right: auto;
            }
        }

        @media (max-width: 576px) {
            .landmark-title {
                font-size: 2.5rem;
            }

            .stat-value {
                font-size: 2.2rem;
            }

            .landmark-stats-grid {
                width: 100%; /* Ensure the grid takes full width */
            }
        }
        
        
        
        /* --- Amenities Section Wrapper --- */
        .amenities-section {
            background-color: var(--amenities-bg-color);
            padding: 60px 20px;
        }

        /* --- Grid Container --- */
        .amenities-grid {
            max-width: 1100px;
            margin: 0 auto;
            display: grid;
            /* Mobile-first: 1 column by default */
            grid-template-columns: 1fr;
            gap: var(--grid-gap);
        }

        /* --- Individual Card Styling --- */
        .amenity-card {
            background-color: var(--card-bg-color);
            border-radius: var(--card-border-radius);
            border: 1px solid var(--border-color);
            overflow: hidden; /* Ensures image corners are rounded */
            display: flex;
            flex-direction: column;
        }

        /* Style for cards containing text and an icon */
        .amenity-card-text {
            padding: 40px 20px;
            justify-content: center;
            align-items: center;
            text-align: center;
            min-height: 250px; /* Gives text cards a nice height */
        }
        
        .amenity-icon {
            width: 50px;
            height: 50px;
            color: var(--icon-color);
            margin-bottom: 24px;
        }

        .amenity-label {
            font-size: 1.25rem;
            color: var(--text-color);
            font-weight: 400;
            line-height: 1.5;
            margin: 0;
            max-width: 200px;
        }

        /* Style for cards containing only an image */
        .amenity-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover; /* Prevents image stretching */
            display: block;
        }
        
        /* --- Responsive Grid for Desktop --- */
        @media (min-width: 768px) {
            .amenities-grid {
                /* On screens 768px and wider, switch to a 2-column grid */
                grid-template-columns: repeat(2, 1fr);
                gap: 24px;
            }
        }
        
        
        
        
/*
=================================================
  INVESTMENT GROWTH SECTION STYLES
=================================================
*/

/* --- Main Section Wrapper --- */
.investment-growth-section {
  background-color: #fcfaf6; /* Light cream background from screenshot */
  padding: 80px 0;
  /* font-family: 'Helvetica Neue', Arial, sans-serif; */
  color: #4a4a4a;
}

.investment-growth-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Top Header Layout --- */
.growth-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid #e0e0e0;
}

.potential-profit {
  display: flex;
  align-items: baseline;
  gap: 15px;
}

.profit-figure {
  /* font-family: 'Georgia', 'Times New Roman', serif; */
  font-size: 2rem;
  font-weight: 300;
  line-height: 1;
  color: #333;
}

.profit-label {
  margin: 0;
  font-size: 1rem;
  color: #666;
  padding-bottom: 1rem; /* Aligns with bottom of figure */
}

.growth-description p {
  margin: 0;
  line-height: 1.7;
  font-size: 1rem;
}

/* --- SVG Graph Styling --- */
.graph-container {
  width: 100%;
}

.investment-graph-svg {
  width: 100%;
  height: auto;
  /* font-family: 'Helvetica Neue', Arial, sans-serif; */
}

.axis-label, .legend-text, .sub-text {
  font-size: 11px;
  fill: #666;
}

.y-axis-title {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.grid-line {
  stroke: #e0e0e0;
  stroke-width: 1;
  stroke-dasharray: 2 3;
}

.background-shade {
  fill: #f0eeea;
}

.legend-description {
  color: #666;
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}

.solid-line {
  stroke: #9b9b9b;
  stroke-width: 2;
  fill: none;
}

.dashed-line {
  stroke: #333;
  stroke-width: 2;
  fill: none;
  stroke-dasharray: 5 5;
}

.data-point {
  fill: #fff;
  stroke-width: 5;
}

.solid-point {
  stroke: #9b9b9b;
}

.dashed-point {
  stroke: #333;
}

.data-label .main-text {
  font-size: 14px;
  font-weight: bold;
  fill: #333;
}

/*
=================================================
  RESPONSIVE STYLES
=================================================
*/
@media (max-width: 992px) {
  .growth-header {
    grid-template-columns: 1fr; /* Stack header items */
    text-align: center;
  }

  .potential-profit {
    justify-content: center; /* Center the big number */
  }

  .profit-figure {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .investment-growth-section {
    padding: 50px 0;
  }

  .profit-figure {
    font-size: 2rem;
  }
  
  .profit-label {
    padding-bottom: 0.5rem;
  }

  .growth-header {
    padding-bottom: 25px;
    margin-bottom: 25px;
  }

  /* On mobile, we hide some labels to avoid clutter, as the visual trend is more important */
  .investment-graph-svg .axis-label,
  .investment-graph-svg .legend-box {
      font-size: 14px; /* Make text larger on mobile for readability, as the whole SVG shrinks */
  }

  .investment-graph-svg .legend-description {
      display: none; /* Hide the long description on mobile */
  }
}



/*
=========================================
  AMENITIES SECTION STYLES
=========================================
*/

/* --- Main Section & Header --- */
.amenities-section {
  background-color: #fcfaf6;
  padding: 80px 0;
  /* font-family: 'Helvetica Neue', Arial, sans-serif; */
  color: #4a4a4a;
}
.amenities-section .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}
.amenities-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}
.amenities-title {
  /* font-family: 'Georgia', 'Times New Roman', serif; */
  font-size: 3rem;
  font-weight: 400;
  color: #333;
  margin: 0;
}
.show-all-btn {
  background-color: #edeae4;
  color: #333;
  padding: 10px 20px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 0.9rem;
  white-space: nowrap;
  transition: background-color 0.3s ease;
}
.show-all-btn:hover {
  background-color: #e0dcd5;
}

/* --- Card Base Styles --- */
.amenity-card {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.amenity-text-card {
  background-color: #fff;
  border: 1px solid #f0eeeb;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 25px;
  text-align: left;
}
.amenity-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.amenity-image-card:hover img {
    transform: scale(1.05);
}
.amenity-icon {
  width: 48px;
  height: 48px;
  color: #333;
}
.amenity-label {
  margin: 0;
  font-size: 1.1rem;
  color: #333;
}


/* --- MOBILE & TABLET LAYOUT (DEFAULT) --- */
/* This creates the 2-column layout from your mobile screenshot */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}


/* --- DESKTOP LAYOUT (MEDIA QUERY) --- */
/* This applies only to screens wider than 1024px */
@media (min-width: 1024px) {
  
  .amenities-grid {
    /* Switch to 4 columns for desktop */
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  
  /* 
    The CSS 'order' property re-arranges the grid items into the checkerboard pattern.
    We are moving items from their mobile-first HTML order to their desktop positions.
  */

  /* Row 1 */
  .amenities-grid .amenity-card:nth-child(1) { order: 1; } /* Pools Text */
  .amenities-grid .amenity-card:nth-child(2) { order: 2; } /* Lobby Image */
  .amenities-grid .amenity-card:nth-child(4) { order: 3; } /* Spa Text (moves from pos 4 to 3) */
  .amenities-grid .amenity-card:nth-child(3) { order: 4; } /* Kids Image (moves from pos 3 to 4) */

  /* Row 2 */
  .amenities-grid .amenity-card:nth-child(6) { order: 5; } /* Games Image (moves from pos 6 to 5) */
  .amenities-grid .amenity-card:nth-child(5) { order: 6; } /* Valet Text (moves from pos 5 to 6) */
  .amenities-grid .amenity-card:nth-child(7) { order: 7; } /* Yoga Image */
  .amenities-grid .amenity-card:nth-child(8) { order: 8; } /* Fitness Text */
}


/* --- SMALLER MOBILE ADJUSTMENTS --- */
@media (max-width: 768px) {
  .amenities-section { padding: 50px 0; }
  .amenities-title { font-size: 2.2rem; }
  .amenities-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .amenities-grid { gap: 10px; }
  .amenity-text-card { padding: 15px; }
  .amenity-label { font-size: 1rem; }
  .amenity-icon { width: 40px; height: 40px; }
}


.details-wrapper {
  /* 1. Turn the wrapper into a flex container */
  display: flex;
  
  /* 2. Stack the children vertically (description on top, button below) */
  flex-direction: column;
  
  /* 3. Center the children horizontally */
  align-items: center;
  
  /* 4. Add a nice gap between the description and the button */
  gap: 30px; 
}


/* --- Download Section Styles --- */

.btn-download {
    background-color: #000000;
    color: white;
}

.btn-download:hover {
    background-color: #218838;
}


.download-section {
    /* 1. Turn this container into a Flexbox container */
    display: flex;

    /* 2. (MOBILE-FIRST) Stack the items vertically */
    flex-direction: column; 

    /* 3. Create a 15px gap between the stacked buttons */
    gap: 15px; 
}


/* --- Media Query for Tablets and Desktops --- */
/* When the screen width is 768px or wider, apply these styles */
@media (min-width: 768px) {
    .download-section {
        /* 4. Change the direction to a horizontal row */
        flex-direction: row; 
    }
}


/* --- Price Section --- */

        /* --- Section and Container Styles --- */
        .price-details-section {
            padding: 27px 0;
            width: 100%;
        }
        .container {
            max-width: 1140px;
            margin: 0 auto;
            padding: 0 15px;
            box-sizing: border-box;
        }

        /* --- Card Styles (with centering) --- */
        :root {
            --brand-color: #c58940;
            --dark-text-color: #0a2540;
            --light-text-color: #555;
            --card-bg-color: #ffffff;
            --card-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
            --card-border-radius: 16px;
        }

        .price-card {
            background-color: var(--card-bg-color);
            border-radius: var(--card-border-radius);
            box-shadow: var(--card-shadow);
            padding: 24px 32px;
            max-width: 680px;
            width: 100%;
            margin: 0 auto;
            box-sizing: border-box;
            
            /* Change 1: Center all text content inside the card */
            text-align: center; 
        }

        .price-card__label {
            color: var(--brand-color);
            font-size: 1rem;
            font-weight: 500;
            margin: 0 0 4px 0;
        }

        .price-card__amount {
            color: #000000;
            font-size: 2.5rem;
            font-weight: 800;
            margin: 0 0 24px 0;
            line-height: 1.2;
            letter-spacing: -1px;
        }

        .price-card__details {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 24px;
            color: var(--light-text-color);
            font-size: 0.9rem;

            /* Change 2: Center the flex items (the details) horizontally */
            justify-content: center; 
        }

        .price-card__detail-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .price-card__detail-item i {
            color: var(--brand-color);
            font-size: 1.1em;
            width: 20px;
            text-align: center;
        }

        /* --- Responsive Adjustments --- */
        @media (max-width: 768px) {
            .price-details-section {
                /* padding: 40px 0; */
            }
        }
        @media (max-width: 480px) {
            .price-card {
                padding: 20px;
            }
            .price-card__amount {
                font-size: 2rem;
            }
            .price-card__details {
                font-size: 0.85rem;
                gap: 10px 16px;
            }
        }
        
        
        
        
        /* --- Payment Plan Section --- */
        .payment-plan-section {
            background-color: var(--bg-color);
            padding: 80px 0;
            font-family: var(--font-sans);
            color: var(--text-color);
        }

        .payment-plan-container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .payment-plan-grid {
            display: grid;
            grid-template-columns: 1fr; /* Single column on mobile */
            gap: 40px 60px;
        }

        /* --- Left Column: Intro --- */
        .payment-plan-intro .section-title {
            font-family: var(--font-serif);
            color: #bd9e6f;
            font-size: 3rem; /* 48px */
            font-weight: 400;
            letter-spacing: 4px;
            margin: 0 0 16px 0;
        }

        .payment-plan-intro p {
            font-size: 1rem; /* 16px */
            line-height: 1.6;
            max-width: 350px;
            margin: 0 0 32px 0;
        }

        .payment-plan-intro .btn-expert {
            display: inline-block;
            background-color: var(--button-bg-color);
            color: var(--button-text-color);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.9rem;
            padding: 14px 28px;
            border-radius: 50px;
            transition: background-color 0.3s ease;
        }

        .payment-plan-intro .btn-expert:hover {
            background-color: #3b3937;
        }

        /* --- Right Column: Milestones --- */
        .milestone-item {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 24px 0;
            border-bottom: 1px solid var(--border-color);
        }
        .milestone-item:last-child {
            border-bottom: none;
        }

        .milestone-icon {
            flex-shrink: 0;
        }
        .milestone-icon svg {
            width: 32px;
            height: 32px;
            stroke: var(--title-color);
        }
        
        .milestone-info {
            flex-grow: 1;
        }

        .milestone-info .title {
            font-weight: 600;
            font-size: 1.1rem;
            color: var(--title-color);
            margin-bottom: 4px;
        }

        .milestone-info .subtitle {
            font-size: 0.9rem;
            color: var(--text-color);
        }

        .milestone-amount {
            text-align: right;
        }

        .milestone-amount .percentage {
            font-weight: 600;
            font-size: 1.25rem;
            color: var(--title-color);
            margin-bottom: 4px;
        }

        .milestone-amount .label,
        .milestone-dropdown {
            font-size: 0.9rem;
            color: var(--text-color);
        }
        
        .milestone-dropdown {
            background-color: #f0ede8;
            padding: 6px 12px;
            border-radius: 6px;
            margin-top: 8px;
            display: inline-block;
            cursor: pointer;
        }
        .milestone-dropdown svg {
            width: 10px;
            height: 10px;
            margin-left: 8px;
        }

        /* --- Responsive Adjustments --- */
        
        /* On tablets and small desktops, center the intro text */
        @media (max-width: 991px) {
            .payment-plan-intro {
                text-align: center;
            }
            .payment-plan-intro p {
                margin-left: auto;
                margin-right: auto;
            }
        }

        /* Switch to two columns on desktop */
        @media (min-width: 992px) {
            .payment-plan-grid {
                grid-template-columns: 0.8fr 1.2fr; /* Give more space to the right column */
                align-items: center;
            }
        }
        
        /* Font size adjustments for mobile */
        @media (max-width: 768px) {
             .payment-plan-section {
                padding: 60px 0;
            }
            .payment-plan-intro .section-title {
                font-size: 2.5rem; /* 40px */
            }
        }
        
        
        
        .connectivity-section {
        /* You can use your own font-family */
        
        background-color: #ffffff;
        color: #1a1a1a;
        padding: 3px 20px 20px 20px;
        text-align: center;
    }

    .connectivity-container {
        /*max-width: 500px; */
        margin: 0 auto;
    }

    /* "CLOSE TO EVERYTHING YOU NEED" */
    .connectivity-subheading {
        font-size: 1rem;
        font-weight: 500;
        letter-spacing: 2px;
        margin: 0 0 15px 0;
        opacity: 0.9;
    }

    /* "CONNECTED TO DUBAI" */
    .connectivity-heading {
        font-size: 1.5rem;
        font-weight: 300; /* Thin font weight */
        letter-spacing: 3px;
        margin: 0 0 50px 0;
    }

    .connectivity-grid {
        display: grid;
        /* On mobile, show a 2x2 grid */
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px; /* Vertical and horizontal gap */
    }

    .connectivity-item {
        display: flex;
        flex-direction: column;
    }

    .connectivity-item .item-value {
        font-size: 1.1rem;
        font-weight: 500;
        line-height: 1.2;
        margin-bottom: 5px;
    }
    
    .connectivity-item .item-label {
        font-size: 1rem;
        font-weight: 400;
        letter-spacing: 1.5px;
    }

    /* --- Responsive adjustments for tablets and desktops --- */
    @media (min-width: 768px) {
        .connectivity-heading {
            font-size: 1.5rem;
        }

        .connectivity-grid {
            /* On larger screens, switch to a 4-column single row */
            grid-template-columns: repeat(4, 1fr);
        }

        .connectivity-item .item-value {
            font-size: 1.5rem;
        }
    }
    
    
    
    
    .key-figures {
            display: grid;
            grid-template-columns: repeat(3, 1fr); /* Three columns on desktop */
            gap: 20px;
            text-align: center;
            margin-top: 10px; /* Space between the about content and stats */
            padding-top: 37px;
            border-top: 1px solid #e0e0e0; /* Subtle separator line */
        }

        .figure-item .number {
            font-size: 2.5rem; /* Large font for the numbers */
            font-weight: 600;
            color: #b87333; /* The brownish-orange color from the screenshot */
            line-height: 1.1;
            margin-bottom: 8px;
        }

        .figure-item .label {
            font-size: 0.9rem;
            color: #555;
            line-height: 1.4;
            margin: 0;
        }
        
        /* --- Responsive adjustments for the Key Figures --- */

        /* Stack the stats on tablets and mobile phones */
        @media (max-width: 768px) {
            .key-figures {
                grid-template-columns: 1fr; /* Single column */
                gap: 50px; /* Increase vertical gap when stacked */
                margin-top: 9px;
                padding-top: 26px;
            }

            .figure-item .number {
                font-size: 2.8rem; /* Slightly smaller font on mobile */
            }
        }
        
        
        /* --- Section Layout --- */
        .investment-section {
            padding: 80px 20px;
            width: 100%;
            box-sizing: border-box;
        }

        .investment-container {
            max-width: 900px; /* A good width for a text-heavy section */
            margin: 0 auto;
        }

        /* --- Main Card Styling --- */
        .investment-card {
            background-color: var(--card-bg-color);
            border: 1px solid var(--card-border-color);
            border-radius: 16px;
            padding: 40px;
            box-shadow: var(--card-shadow);

            /* This is the key change to center all content */
            text-align: center;
        }
        
        /* --- Content Styling --- */
        .investment-card h2 {
            font-size: 2.25rem; /* 36px */
            color: #bd9e6e;
            font-weight: 700;
            margin-top: 0;
            margin-bottom: 24px;
        }

        .investment-card p {
            font-size: 1rem; /* 16px */
            line-height: 1.7;
            color: var(--text-color);
            margin-bottom: 24px;
        }

        .investment-card h3 {
            font-size: 1.5rem; /* 24px */
            color: var(--subtitle-color);
            font-weight: 600;
            margin-top: 32px;
            margin-bottom: 24px;
        }

        /* --- Ordered List Styling --- */
        .investment-card ol {
            padding-left: 0; /* Removes default browser indentation */
            list-style-position: inside; /* Keeps numbers aligned with centered text */
            margin-bottom: 32px;
        }

        .investment-card ol li {
            font-size: 1rem;
            line-height: 1.8;
            color: var(--text-color);
            margin-bottom: 12px; /* Space between list items */
        }
        
        .investment-card .conclusion {
            margin-bottom: 0; /* Remove margin from the very last paragraph */
        }

        /* --- Responsive Adjustments --- */
        @media (max-width: 768px) {
            .investment-section {
                padding: 40px 15px;
            }

            .investment-card {
                padding: 30px 20px;
            }

            .investment-card h2 {
                font-size: 1.8rem; /* 28.8px */
            }

            .investment-card h3 {
                font-size: 1.25rem; /* 20px */
            }

            .investment-card p,
            .investment-card ol li {
                font-size: 0.95rem;
            }
        }
        
        
        
        .questionnaire-container {
    max-width: 600px;
    margin: 0 auto;
    /* padding: 10px; */
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

/* Label Styling */
.q-label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
    font-size: 15px;
}

/* The Red Asterisk */
.req {
    color: #ff0000;
    margin-left: 3px;
}

/* Dropdown (Select) Styling */
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #fff;
    font-size: 14px;
    color: #333;
    outline: none;
    cursor: pointer;
    /* Removes default browser styling for a cleaner look */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    /* Adds a custom arrow icon */
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
}

/* Dropdown Focus State (When clicked) */
.form-group select:focus {
    border-color: #333; /* Changes border to dark grey/black */
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

/* Style for the 'placeholder' option */
.form-group select:invalid {
    color: #888;
}





/* Country Code Wrapper */
.cnu-wrapper {
  font-family: sans-serif;
  position: relative;
}

/* Flex Container */
.cnu-input-container {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 4px;
  height: 50px;
  border: 1px solid #ccc; /* Added border to match white modal themes */
}

/* Display Trigger */
.cnu-display {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  height: 100%;
  background: #ffffff;
  color: #888888;
  cursor: pointer;
  min-width: 100px;
  border-radius: 4px 0 0 4px;
  user-select: none;
  font-size: 14px;
}

.cnu-display img.cnu-flag {
  width: 24px;
  height: auto;
  margin-right: 8px;
  border-radius: 2px;
}

.cnu-arrow {
  font-size: 10px;
  margin-left: 8px;
  color: #646464;
}

/* Phone Input */
.cnu-phone-input {
  flex-grow: 1;
  border: none;
  outline: none;
  padding-left: 15px;
  font-size: 16px;
  color: #000;
  height: 100%;
  background: transparent;
  border-radius: 0 4px 4px 0;
}

/* Dropdown - Very High Z-Index for Modal Support */
.cnu-dropdown {
  display: none;
  position: absolute;
  top: 105%;
  left: 0;
  width: 100%;
  max-width: 350px;
  background: #000;
  border: 1px solid #333;
  border-radius: 6px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  z-index: 999999; /* Higher than modal */
  overflow: hidden;
}

.cnu-dropdown.open {
  display: block;
}

/* Search Box */
.cnu-search-box {
  padding: 10px;
  background: #111;
  border-bottom: 1px solid #333;
}

.cnu-search {
  width: 100%;
  padding: 8px 12px;
  background: #222;
  border: 1px solid #444;
  border-radius: 4px;
  color: #fff;
  font-size: 14px;
  outline: none;
}

/* List Items */
.cnu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 250px;
  overflow-y: auto;
}

.cnu-countryOption {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  cursor: pointer;
  border-bottom: 1px solid #222;
  color: #fff;
  font-size: 14px;
  transition: background 0.2s;
}

.cnu-countryOption:hover {
  background: #333;
}

.cnu-countryOption img {
  width: 20px;
  margin-right: 12px;
}

/* Scrollbar */
.cnu-list::-webkit-scrollbar {
  width: 6px;
}
.cnu-list::-webkit-scrollbar-thumb {
  background: #444;
  border-radius: 3px;
}



/* =========================
   PROJECT BANNER SLIDER 
========================= */
.pbshot{
  width: 100%;
  padding: 22px 0;
}

/* outer card like screenshot */
.pbshot__card{
  width: min(1220px, 92%);
  margin: 0 auto;
  background: #fff;
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: 0 10px 26px rgba(0,0,0,.06);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  overflow: hidden;
}

/* LEFT: image area */
.pbshot__media{
  position: relative;
  min-height: 280px;
  background: #111;
  overflow: hidden;
}

/* Track & slides (reuse your slider JS) */
.pbshot .pbanner-track{
  height: 100%;
  display: flex;
  transition: transform 650ms ease;
  will-change: transform;
  touch-action: pan-y;
}
.pbshot .pbanner-slide{
  flex: 0 0 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

/* Rounded card like screenshot */
.pbshot__card{
  border-radius: 12px;
  overflow: hidden;
}

/* Rounded image side */
.pbshot__media{
  border-radius: 12px 0 0 12px;
  overflow: hidden;
}

/* Mobile: full rounded image */
@media (max-width: 820px){
  .pbshot__media{
    border-radius: 12px 12px 0 0;
  }
}

/* Arrows (subtle like screenshot) */
.pbshot .pbanner-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(0,0,0,.18);
  color: rgba(255,255,255,.9);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 22px;
}
.pbshot .pbanner-arrow--prev{ left: 14px; }
.pbshot .pbanner-arrow--next{ right: 14px; }

/* Dots bottom center */
.pbshot .pbanner-dots{
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.pbshot .pbanner-dot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.55);
  background: transparent;
  cursor: pointer;
  padding: 0;
}
.pbshot .pbanner-dot.is-active{
  background: rgba(255,255,255,.75);
}

/* RIGHT: content */
.pbshot__content{
  padding: clamp(18px, 2.6vw, 30px);
  display: grid;
  align-content: start;
  gap: 14px;
}

/* date row */
.pbshot__meta{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(0,0,0,.65);
  font-size: 14px;
}
.pbshot__cal{ font-size: 16px; opacity: .8; }

/* title */
.pbshot__title{
  margin: 0;
  font-family: 'Satoshi', sans-serif;
  font-weight: 400;
  letter-spacing: .02em;
  line-height: 1.25;
  font-size: clamp(18px, 2.2vw, 30px);
  color: #b07a2f;
  max-width: 44ch;
}
.pbshot__title span{ letter-spacing: .06em; }

/* small line: type + bedrooms */
.pbshot__sub{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  font-family: 'Satoshi', sans-serif;
  font-size: 13px;
  color: rgba(0,0,0,.70);
}
.pbshot__pill{
  display: inline-flex;
  padding: 6px 10px;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 6px;
  color: rgba(0,0,0,.72);
}
.pbshot__sep{ opacity: .45; }
.pbshot__muted{ opacity: .75; }

/* price */
.pbshot__price{
  font-family: 'Satoshi', sans-serif;
  color: rgba(0,0,0,.72);
  font-size: 15px;
  letter-spacing: .04em;
}

/* bottom row: button + author */
.pbshot__bottom{
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* button */
.pbshot__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 34px;
  background: #000;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: .06em;
  border: 0;
   border-radius: 6px;
}
.pbshot__btn:hover{ filter: brightness(.95); }

/* author */
.pbshot__author{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(0,0,0,.72);
  font-size: 14px;
}
.pbshot__avatar{
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  border: 3px solid rgba(176,122,47,.45);
  background-color: #fff;
}
.pbshot__name{ white-space: nowrap; }

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 820px){
  .pbshot__card{
    grid-template-columns: 1fr;
  }
  .pbshot__media{
    min-height: 240px;
  }
  .pbshot__title{
    max-width: 100%;
  }

  .pbshot__btn{
    width: 100%;
    height: 50px;
  }
  .pbshot__author{
    width: 100%;
    justify-content: center;
  }
}
