/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
  }
  
  /* Navbar */
  .navbar {
    width: 100%;
    height: 80px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 50px;
  }
  
  /* Transparent base */
  .navbar::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0;
    background: #000;
    z-index: -1;
    transition: height 0.7s ease;
  }
  
  /* Scrolled effect - background slides down */
  .navbar.scrolled::before {
    height: 100%;
  }
  
  .logo {
    display: flex;
    align-items: center;
    gap: 8px;         /* space between the two logos */
    margin-left: 90px; /* distance from left */
  }
  .logo img {
    height: 150px;
    width: 200px;
}
  
  .logo img:first-child {
    height: 35px;     /* main logo size */
    width: auto;
  }
  
  .logo img:nth-child(2) {
    height: 28px;     /* smaller second logo */
    width: auto;
  }
  @media (max-width: 992px) {
    .logo img:first-child {
      height: 30px;
    }
    .logo img:nth-child(2) {
      height: 24px;
    }
  }
  
  /* Mobile Screens */
 /* Hide logo1 only on mobile screens */
@media (max-width: 600px) {
    .logo img:first-child {
      display: none;
    }
  }
  
  /* Keep both logos visible on larger screens */
  @media (min-width: 601px) {
    .logo img:first-child {
      display: inline-block;
    }
  }
  
  
  /* Very Small Devices */
  @media (max-width: 400px) {
    .logo img:first-child {
      height: 22px;
    }
    .logo img:nth-child(2) {
      height: 18px;
    }
  }
  
  /* Menu links */
  .nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
  }
  
  .nav-links a {
    color: #fefefe;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  .nav-links a:hover {
    color: #fbff2a;
  }
  
  /* Phone Number */
  .phone {
    font-weight: 600;
    border-left: 1px solid #444;
    padding-left: 15px;
  }
  
  /* Enquire Now Button */
  .btn-enquire {
    background: linear-gradient(90deg, #d4af37, #f5d76e);
    color: #000;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    transition: background 0.3s ease;
  }
  
  .btn-enquire:hover {
    background: linear-gradient(90deg, #f5d76e, #d4af37);
    color: #fff;
  }
  
  /* Mobile menu */
  .menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
  }
  
  .menu-toggle span {
    width: 25px;
    height: 3px;
    background: #d4af37;
    border-radius: 3px;
  }
  
  /* Responsive */
  @media (max-width: 992px) {
    .nav-links {
      position: absolute;
      top: 80px;
      right: 0;
      background: #000;
      flex-direction: column;
      width: 220px;
      height: 0;
      overflow: hidden;
      gap: 20px;
      padding: 0;
      transition: height 0.3s ease;
    }
  
    .nav-links.show {
      height: 310px;
      padding: 20px;
    }
  
    .menu-toggle {
      display: flex;
    }
  }
  
  /* Hero Section */
 /* ------------------------------
   HERO SECTION (Premium Style)
--------------------------------*/
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url('../img/bannervideo.mp4') center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 10%;
    overflow: hidden;
    color: #fff;
}

/* Dark overlay with golden gradient */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.85) 40%, rgba(212,175,55,0.15));
    z-index: 1;
}

/* Hero content */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    text-align: left;
}

/* Subheading text */
.hero-content h5 {
    font-size: 16px;
    letter-spacing: 3px;
    color: #f5d76e;
    margin-bottom: 15px;
    opacity: 0;
    animation: fadeUp 1.2s ease-in-out 0.3s forwards;
}

/* Main heading */
.hero-content h1 {
    font-size: 52px;
    line-height: 1.2;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeUp 1.2s ease-in-out 0.6s forwards;
}

.hero-content h1 span {
    color: #d4af37;
    display: inline-block;
}

/* Description */
.hero-content p {
    font-size: 18px;
    line-height: 1.6;
    color: #ddd;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeUp 1.2s ease-in-out 0.9s forwards;
}
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 10%;
    overflow: hidden;
    color: #fff;
}

/* Video Background */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Overlay with golden gradient */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.85) 40%, rgba(212,175,55,0.15));
    z-index: 1;
}

/* Buttons container */
.cta-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
    opacity: 0;
    animation: fadeUp 1.2s ease-in-out 1.2s forwards;
}

/* Enquire button */
.btn-enquire {
    background: linear-gradient(90deg, #d4af37, #f5d76e);
    color: #000;
    padding: 14px 35px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 4px 10px rgba(212,175,55,0.3);
}

.btn-enquire:hover {
    background: linear-gradient(90deg, #f5d76e, #d4af37);
    color: #fff;
    transform: translateY(-3px);
}

/* Play button */
.btn-play {
    width: 60px;
    height: 60px;
    border: 2px solid #d4af37;
    border-radius: 50%;
    background: transparent;
    color: #d4af37;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.4s ease;
}

.btn-play:hover {
    background: #d4af37;
    color: #000;
}

/* Animation keyframes */
@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 40px;
    }
    .hero-content p {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 0 5%;
        text-align: center;
        justify-content: center;
    }
    .cta-buttons {
        justify-content: center;
    }
}
/* Section container */
.video-footer {
    position: relative;
    height: 300px;
    overflow: hidden;
  }
  
  /* Background video */
  .footer-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }
  
  /* Overlay with semi-transparent dark background */
  .footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Content inside the overlay */
  .footer-content {
    text-align: center;
    color: white;
    padding: 20px;
  }
  
  .footer-content h2 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 600;
  }
  
  /* WhatsApp Button */
  .whatsapp-btn {
    background-color: #ffffff;
    color: black;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: background-color 0.3s ease;
  }
  
  .whatsapp-btn:hover {
    background-color: #e7eeea;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .footer-content h2 {
      font-size: 22px;
    }
  
    .whatsapp-btn {
      padding: 10px 20px;
      font-size: 15px;
    }
  }
  
  @media (max-width: 480px) {
    .footer-content h2 {
      font-size: 18px;
    }
  
    .whatsapp-btn {
      padding: 8px 18px;
      font-size: 14px;
    }
  }
  

/* Luxury Section */
.luxury-section {
    padding: 60px 15px;
    text-align: center;
    background-color: #000000;
    color: hsl(55, 71%, 47%);
    font-family: 'Poppins', sans-serif;
}

.luxury-container {
    max-width: 800px;
    margin: 0 auto;
}

/* Icon */
.luxury-icon img {
    width: 100px;
    margin-bottom: 20px;
}

/* Title */
.luxury-title {
    font-size: 34px;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
}

/* Decorative underline */
.luxury-title::after {
    content: '';
    display: block;
    width: 70px;
    height: 3px;
    background: #d4af37;
    margin: 12px auto 0;
}

/* Description */
.luxury-desc {
    font-size: 17px;
    color: #fbb85b;
    line-height: 1.8;
    margin: 20px 0 40px;
    padding: 0 10px;
}

/* Buttons container */
.luxury-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
}

/* Buttons */
.btn-call,
.btn-whatsapp {
    padding: 14px 32px;
    border-radius: 35px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.4s ease;
    display: inline-block;
    min-width: 180px;
    text-align: center;
    cursor: pointer;
}

/* Call Button */
.btn-call {
    background: linear-gradient(90deg, #d4af37, #b88a1e);
    color: #fff;
    border: none;
}
.btn-call:hover {
    background: linear-gradient(90deg, #b88a1e, #d4af37);
}

/* WhatsApp Button */
.btn-whatsapp {
    background: #ffffff;
    color: #fff;
    border: none;
}
.btn-whatsapp:hover {
    background: #1ebd58;
}

/* ============= Fade-Up Animation ============= */
.animated-content {
    opacity: 0;
    transform: translateY(50px);
    animation: fadeUp 1.2s ease forwards;
}

.luxury-icon.animated-content {
    animation-delay: 0.3s;
}
.luxury-title.animated-content {
    animation-delay: 0.6s;
}
.luxury-desc.animated-content {
    animation-delay: 0.9s;
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 576px) {
    .luxury-title {
        font-size: 26px;
    }
    .luxury-desc {
        font-size: 14px;
    }
    .btn-call,
    .btn-whatsapp {
        min-width: 140px;
        padding: 12px 20px;
    }
}


.property-highlight {
    padding: 80px 10%;
    background: #fff;
    color: #000;
    font-family: 'Poppins', sans-serif;
}

.property-container {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}

/* Image */
.property-image {
    position: relative;
    flex: 1;
    min-width: 320px;
}
.property-image img {
    width: 80%;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.property-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

/* Price Tag */
.price-tag {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 12px 18px;
    border-radius: 8px;
    backdrop-filter: blur(4px);
    transition: all 0.4s ease;
    z-index: 2;
}
.price-tag:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #000;
}
.price-title {
    font-size: 14px;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.price-value {
    display: block;
    font-size: 22px;
    font-weight: 700;
    margin-top: 3px;
}
.price-sub {
    font-size: 12px;
    opacity: 0.8;
}

/* Content */
.property-content {
    flex: 1;
    min-width: 320px;
}
.property-title {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
}
.property-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: #d4af37;
    margin-top: 8px;
}
.property-desc {
    font-size: 16px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Buttons */
.property-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}
.btn-call, .btn-whatsapp {
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: 0.4s ease;
    display: inline-block;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}
.btn-call {
    background: linear-gradient(90deg, #d4af37, #b88a1e);
    color: #fff;
}
.btn-call:hover {
    background: linear-gradient(90deg, #b88a1e, #d4af37);
    transform: translateY(-3px);
}
.btn-whatsapp {
    background: #25D366;
    color: #fff;
}
.btn-whatsapp:hover {
    background: #1ebd58;
    transform: translateY(-3px);
}

/* Loan Logos */
.loan-approved {
    font-size: 14px;
    color: #555;
}
.bank-logos img {
    height: 28px;
    margin: 8px 10px 0 0;
}

/* Scroll Animation */
.reveal-animation {
    opacity: 1; /* visible by default */
    transform: translateY(0);
    transition: opacity 1s ease, transform 1s ease;
}
.reveal-animation.hidden {
    opacity: 0;
    transform: translateY(40px);
}
.reveal-animation.visible {
    opacity: 1;
    transform: translateY(0);
}
.delay-2 {
    transition-delay: 0.3s;
}

/* Responsive */
@media (max-width: 768px) {
    .property-container { flex-direction: column; text-align: center; }
    .property-buttons { justify-content: center; }
    .property-title { font-size: 26px; }
}


/* Download Section */
.download-section {
    background: linear-gradient(to right, #000, #1a1a1a);
    padding: 80px 10%;
    text-align: center;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    position: relative;
}

.download-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #d4af37;
}

.download-subtitle {
    font-size: 16px;
    color: #ddd;
    max-width: 600px;
    margin: 0 auto 40px;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-download {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #d4af37;
    color: #000;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.btn-download i {
    font-size: 18px;
}

.btn-download:hover {
    background: #b88a1e;
    transform: translateY(-3px);
}

/* Special luxury effect */
.price-list-btn {
    background: linear-gradient(90deg, #d4af37, #f4df8c);
}
.price-list-btn:hover {
    background: linear-gradient(90deg, #b88a1e, #d4af37);
}

.brochure-btn {
    background: linear-gradient(90deg, #f4df8c, #d4af37);
}
.brochure-btn:hover {
    background: linear-gradient(90deg, #d4af37, #b88a1e);
}

/* Responsive */
@media (max-width: 768px) {
    .download-buttons {
        flex-direction: column;
        gap: 15px;
    }
}


.luxury-highlights {
    background: #fff;
    padding: 100px 10%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Poppins', sans-serif;
}

.highlight-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    width: 100%;
}

.highlight-left {
    flex: 1;
    color: #222;
}

.highlight-title {
    font-size: 36px;
    font-weight: 700;
    color: #b88a1e;
    margin-bottom: 20px;
}

.highlight-text {
    font-size: 16px;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.6;
}

.highlight-points {
    display: grid;
    gap: 12px;
    margin-bottom: 25px;
}

.point {
    display: flex;
    align-items: center;
    font-size: 15px;
    color: #333;
}

.point i {
    color: #b88a1e;
    margin-right: 10px;
    font-size: 18px;
}

/* Buttons */
.highlight-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-download,
.btn-brochure {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    background: linear-gradient(90deg, #d4af37, #f4df8c);
    color: #000;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-download:hover,
.btn-brochure:hover {
    transform: translateY(-3px);
    background: linear-gradient(90deg, #b88a1e, #d4af37);
}

/* Right Image */
.highlight-right {
    flex: 1;
    position: relative;
}

.highlight-right img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.1);
    border-radius: 15px;
    transition: 0.3s ease;
}

.highlight-right:hover .img-overlay {
    background: rgba(184,138,30,0.2);
}

/* Responsive */
@media (max-width: 992px) {
    .highlight-container {
        flex-direction: column;
    }
    .highlight-right {
        order: -1;
    }
}



.a1-map-unique {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

.a1-map-unique .map-unique-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.55);
}

/* Info Box */
.a1-map-unique .map-unique-info {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(14px);
    padding: 50px;
    border-radius: 16px;
    width: 90%;
    max-width: 700px;
    color: #ffffff;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    animation: fadeUpUnique 1s ease forwards;
}

.a1-map-unique .map-unique-title {
    font-size: 32px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.a1-map-unique .map-unique-text {
    font-size: 16px;
    color: #000000;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Highlights */
.a1-map-unique .map-unique-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 25px;
}

.a1-map-unique .map-unique-highlights div {
    background: rgb(0, 0, 0);
    padding: 10px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    transition: 0.3s;
}

.a1-map-unique .map-unique-highlights div:hover {
    background: rgba(255, 215, 0, 0.4);
}

.a1-map-unique .map-unique-highlights i {
    color: #ffd700;
}

/* Buttons */
.a1-map-unique .map-unique-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.a1-map-unique .btn-unique {
    padding: 12px 20px;
    background: linear-gradient(90deg, #d4af37, #f4df8c);
    color: #000;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.a1-map-unique .btn-unique:hover {
    background: linear-gradient(90deg, #b88a1e, #d4af37);
    transform: translateY(-3px);
}

/* Animation */
@keyframes fadeUpUnique {
    0% {
        opacity: 0;
        transform: translate(-50%, 20%);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .a1-map-unique .map-unique-highlights {
        grid-template-columns: 1fr;
    }
    .a1-map-unique .map-unique-info {
        padding: 40px;
    }
}

/*-----------------------------------------*/

/* Section Container */
.lux-contact-section {
    position: relative;
    width: 100%;
    padding:  10px; /* ✅ 10px top & bottom padding */
    text-align: center;
    font-family: 'Poppins', sans-serif;
    color: #fff;
    overflow: hidden;
}

/* Background Video */
.lux-contact-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

/* Dark Overlay for visibility */
.lux-contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.31);
    z-index: 1;
}

/* Content Box */
.lux-container {
    position: relative;
    z-index: 2;
    max-width: 70px;
    margin: 0 10px; /* ✅ left/right spacing */
    padding: 0 10px;
}

/* Heading with animation */
.lux-heading {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    animation: fadeInDown 1.2s ease-out;
}

/* Subtext */
.lux-subtext {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 35px;
    animation: fadeInUp 1.2s ease-out;
}

/* Button group */
.lux-btn-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Buttons */
.lux-btn {
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.lux-btn i {
    font-size: 18px;
}

/* Golden Button */
.lux-btn-gold {
    background: linear-gradient(45deg, #b8860b, #f5c842);
    color: #fff;
}
.lux-btn-gold:hover {
    background: linear-gradient(45deg, #f5c842, #b8860b);
    transform: translateY(-3px);
}

/* WhatsApp Button */
.lux-btn-green {
    background: linear-gradient(45deg, #25d366, #1ebc57);
    color: #fff;
}
.lux-btn-green:hover {
    background: linear-gradient(45deg, #1ebc57, #25d366);
    transform: translateY(-3px);
}

/* Animations */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 600px) {
    .lux-btn-group {
        flex-direction: column;
    }
}

.a1-connectivity-section {
    position: relative;
    width: 100%;
    height: 70vh;
    display: flex;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
}

.a1-connectivity-section .bg-video {
    position: absolute;
    top: 0;
    right: 0;         /* Push video to the right */
    width: 62%;       /* Video takes 62% of section width */
    height: 100%;
    object-fit: cover;
    filter: brightness(0.45);
    z-index: 1;
}


/* Left Section - Connectivity */
.connectivity-content {
    width: 38%;
    padding: 80px 40px;
    z-index: 2;
    background: rgb(0, 0, 0);
    backdrop-filter: blur(6px);
}

.connectivity-content h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 15px;
}

.connectivity-content span {
    color: #f5c842;
}

.connectivity-content p {
    font-size: 16px;
    margin-bottom: 20px;
}

.connectivity-list .item {
    font-size: 15px;
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.connectivity-list i {
    color: #f5c842;
    font-size: 18px;
}

/* Right Section - Amenities */
.amenities-content {
    width: 62%;
    padding: 80px 50px;
    z-index: 2;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
}

.amenities-content h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 20px;
}

.amenities-content span {
    color: #f5c842;
}

.amenities-list .amenity {
    font-size: 15px;
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.amenities-list i {
    color: #f5c842;
    font-size: 18px;
}

/* Animations */
.fade-in { 
    opacity: 0; 
    transform: translateY(20px); 
    animation: fadeIn 1s ease forwards;
}
.fade-in-delay { 
    opacity: 0; 
    transform: translateY(20px); 
    animation: fadeIn 1s ease 0.3s forwards;
}
.fade-up { 
    opacity: 0; 
    transform: translateY(30px); 
    animation: fadeInUp 0.8s ease forwards;
}
.fade-right {
    opacity: 0;
    transform: translateX(30px);
    animation: fadeInRight 0.8s ease forwards;
}

@keyframes fadeIn {
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
    to { opacity: 1; transform: translateX(0); }
}

/* Responsive */
@media (max-width: 900px) {
    .a1-connectivity-section {
        position: relative;
        width: 100%;
        height: 70vh;
        display: flex;
        color: #fff;
        font-family: 'Poppins', sans-serif;
        overflow: hidden;
    }
    
    .a1-connectivity-section .bg-video {
        position: absolute;
        top: 0;
        right: 0;         /* Push video to the right */
        width: 62%;       /* Video takes 62% of section width */
        height: 100%;
        object-fit: cover;
        filter: brightness(0.45);
        z-index: 1;
    }
    
    
    /* Left Section - Connectivity */
    .connectivity-content {
        width: 38%;
        padding: 80px 40px;
        z-index: 2;
        background: rgb(0, 0, 0);
        backdrop-filter: blur(6px);
    }
    
    .connectivity-content h2 {
        font-size: 34px;
        font-weight: 700;
        margin-bottom: 15px;
    }
    
    .connectivity-content span {
        color: #f5c842;
    }
    
    .connectivity-content p {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .connectivity-list .item {
        font-size: 15px;
        padding: 10px 0;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .connectivity-list i {
        color: #f5c842;
        font-size: 18px;
    }
    
    /* Right Section - Amenities */
    .amenities-content {
        width: 62%;
        padding: 80px 50px;
        z-index: 2;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(4px);
    }
    
    .amenities-content h2 {
        font-size: 34px;
        font-weight: 700;
        margin-bottom: 20px;
    }
    
    .amenities-content span {
        color: #f5c842;
    }
    
    .amenities-list .amenity {
        font-size: 15px;
        padding: 12px 0;
        display: flex;
        align-items: center;
        gap: 10px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .amenities-list i {
        color: #f5c842;
        font-size: 18px;
    }
    
    /* Animations */
    .fade-in { 
        opacity: 0; 
        transform: translateY(20px); 
        animation: fadeIn 1s ease forwards;
    }
    .fade-in-delay { 
        opacity: 0; 
        transform: translateY(20px); 
        animation: fadeIn 1s ease 0.3s forwards;
    }
    .fade-up { 
        opacity: 0; 
        transform: translateY(30px); 
        animation: fadeInUp 0.8s ease forwards;
    }
    .fade-right {
        opacity: 0;
        transform: translateX(30px);
        animation: fadeInRight 0.8s ease forwards;
    }
    
    @keyframes fadeIn {
        to { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeInUp {
        to { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeInRight {
        to { opacity: 1; transform: translateX(0); }
    }
    
    /* Responsive */
    @media (max-width: 900px) {
        .a1-connectivity-section {
            flex-direction: column;
            height: auto;
        }
        .a1-connectivity-section .bg-video {
            width: 100%;
            height: 100%;
            position: absolute;
            left: 0;
            right: 0;
            top: 0;
            bottom: 0;
            z-index: 1;
        }

        .a1-connectivity-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            z-index: 1;
        }
        .connectivity-content,
    .amenities-content {
        position: relative;
        z-index: 2;
        width: 100%;
        padding: 40px 20px;
        background: transparent;
    }
}
        .connectivity-content, .amenities-content {
            width: 100%;
            padding: 40px 20px;
        }
    }
    .connectivity-content, .amenities-content {
        width: 100%;
        padding: 40px 20px;
    }

.lux-contact-section {
    background: #fff;
    padding: 70px 20px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.lux-container {
    max-width: 700px;
    margin: 0 auto;
}

.lux-heading {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.lux-subtext {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 35px;
}

.lux-btn-group {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.lux-btn {
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.lux-btn i {
    font-size: 18px;
}

/* Golden Button */
.lux-btn-gold {
    background: linear-gradient(45deg, #b8860b, #f5c842);
    color: #fff;
}

.lux-btn-gold:hover {
    background: linear-gradient(45deg, #f5c842, #b8860b);
    transform: translateY(-3px);
}

/* WhatsApp Button */
.lux-btn-green {
    background: linear-gradient(45deg, #25d366, #1ebc57);
    color: #fff;
}

.lux-btn-green:hover {
    background: linear-gradient(45deg, #1ebc57, #25d366);
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 600px) {
    .lux-btn-group {
        flex-direction: column;
    }
}

/*---------------------------------------*/
/* Video Footer Section */
.lux-footer2 {
    position: relative;
    height: 200px;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

.lux-footer2-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.lux-footer2-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    padding: 18px 30px;
    z-index: 2;
}

.lux-footer2-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.lux-footer2-btn {
    padding: 12px 26px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.lux-footer2-call {
    background: linear-gradient(45deg, #b8860b, #f5c842);
}
.lux-footer2-call:hover {
    background: linear-gradient(45deg, #f5c842, #b8860b);
    transform: translateY(-2px);
}

.lux-footer2-whatsapp {
    background: linear-gradient(45deg, #25d366, #1ebc57);
}
.lux-footer2-whatsapp:hover {
    background: linear-gradient(45deg, #1ebc57, #25d366);
    transform: translateY(-2px);
}

/* --- COPYRIGHT FOOTER --- */
.lux-footer2-bottom {
    background-color: #000;
    color: #fff;
    padding: 15px 30px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
}

.lux-footer2-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.lux-footer2-links a {
    color: #fff;
    text-decoration: none;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.lux-footer2-links a:hover {
    color: #f5c842;
}

.lux-footer2-links span {
    color: #ccc;
}

@media (max-width: 768px) {
    .lux-footer2-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .lux-footer2-btn {
        width: 100%;
        justify-content: center;
    }
    .lux-footer2-bottom-container {
        flex-direction: column;
        text-align: center;
    }
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.popup-content {
    background: #fff;
    padding: 25px 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 450px;
    position: relative;
    animation: popupShow 0.3s ease-in-out;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    font-family: 'Poppins', sans-serif;
}

.popup-close {
    position: absolute;
    top: 12px;
    right: 15px;
    font-size: 28px;
    cursor: pointer;
    color: #666;
    transition: color 0.3s ease;
}
.popup-close:hover {
    color: #d4af37;
}

.form-group {
    margin-bottom: 15px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 15px;
    outline: none;
    transition: border-color 0.3s ease;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: #d4af37;
}

.popup-btn {
    width: 100%;
    background: linear-gradient(45deg, #b8860b, #f5c842);
    color: #fff;
    padding: 12px;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s ease;
}
.popup-btn:hover {
    background: linear-gradient(45deg, #f5c842, #b8860b);
}

@keyframes popupShow {
    from { transform: translateY(-20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
.lux-footer2-social a {
    margin: 0 8px;
    color: #fff; /* Change to your footer text color */
    font-size: 18px;
    transition: color 0.3s ease;
  }
  
  .lux-footer2-social a:hover {
    color: #f39c12; /* Highlight color on hover */
  }
  

