  :root {
    --gold: #C9A84C;
    --gold-light: #E8C96A;
    --dark: #0D0D1A;
    --dark2: #141428;
    --dark3: #1A1A35;
    --white: #FFFFFF;
    --off-white: #F5F0E8;
    --grey: #888899;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Montserrat', sans-serif;
    background: var(--dark);
    color: var(--white);
    overflow-x: hidden;
  }

  /* ── STICKY HEADER ── */
  header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(13,13,26,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(201,168,76,0.3);
    padding: 14px 40px;
    display: flex; align-items: center; justify-content: space-between;
  }
  .logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px; font-weight: 600;
    color: var(--gold); letter-spacing: 2px;
  }
  .logo-sub {
    font-size: 9px; color: var(--grey);
    letter-spacing: 3px; text-transform: uppercase;
  }
  .header-cta {
    display: flex; gap: 16px; align-items: center;
  }
  .header-phone {
    font-size: 13px; color: var(--gold);
    font-weight: 500; letter-spacing: 1px;
    text-decoration: none;
  }
  .btn-gold {
    background: var(--gold);
    color: var(--dark);
    border: none; cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px; font-weight: 600;
    letter-spacing: 2px; text-transform: uppercase;
    padding: 10px 22px;
    transition: all 0.3s ease;
    text-decoration: none; display: inline-block;
  }
  .btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }

  /* ── HERO ── */
 .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 0;
    padding-top: 70px;
    position: relative;
    overflow: hidden;

    background: linear-gradient(135deg, rgb(13 13 26 / 79%) 0%, rgb(26 26 53 / 63%) 50%, rgb(13 13 26 / 59%) 100%), url(../images/gg1.webp) center center / cover no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;

    background:
    radial-gradient(
        ellipse at 30% 50%,
        rgba(201,168,76,0.08) 0%,
        transparent 60%
    );
}
  .hero-bg-pattern {
    position: absolute; inset: 0;
    background-image: repeating-linear-gradient(
      45deg, transparent, transparent 60px,
      rgba(201,168,76,0.03) 60px, rgba(201,168,76,0.03) 61px
    );
  }

  .hero-content {
    display: flex; flex-direction: column;
    justify-content: center; padding: 80px 60px 80px 80px;
    position: relative; z-index: 2;
  }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 10px;
    border: 1px solid rgba(201,168,76,0.4);
    padding: 7px 18px; margin-bottom: 30px;
    width: fit-content;
  }
  .hero-badge span {
    font-size: 10px; letter-spacing: 3px;
    color: var(--gold); text-transform: uppercase; font-weight: 500;
  }
  .hero-badge-dot {
    width: 6px; height: 6px;
    background: var(--gold); border-radius: 50%;
    animation: pulse 2s infinite;
  }
  @keyframes pulse {
    0%,100% { opacity: 1; } 50% { opacity: 0.3; }
  }

  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(42px, 5vw, 52px);
    font-weight: 300; line-height: 1.1;
    color: var(--white); margin-bottom: 8px;
  }
  .hero-title em {
    font-style: italic; color: var(--gold);
  }
  .hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px; font-style: italic;
    color: var(--grey); margin-bottom: 30px; letter-spacing: 1px;
  }
  .hero-divider {
    width: 80px; height: 1px;
    background: linear-gradient(to right, var(--gold), transparent);
    margin-bottom: 30px;
  }
  .hero-features {
    display: flex; flex-direction: column; gap: 12px; margin-bottom: 40px;
  }
  .hero-feature {
    display: flex; align-items: center; gap: 14px;
    font-size: 13px; color: var(--off-white); font-weight: 300;
    letter-spacing: 0.5px;
  }
  .hero-feature::before {
    content: ''; width: 20px; height: 1px;
    background: var(--gold); flex-shrink: 0;
  }
  .hero-btns {
    display: flex; gap: 14px; flex-wrap: wrap;
  }
  .btn-outline {
    border: 1px solid var(--gold); color: var(--gold);
    background: transparent; cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px; font-weight: 600;
    letter-spacing: 2px; text-transform: uppercase;
    padding: 10px 22px;
    transition: all 0.3s ease; text-decoration: none;
    display: inline-block;
  }
  .btn-outline:hover {
    background: rgba(201,168,76,0.1);
  }

  /* HERO FORM */
  .hero-form-wrap {
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(20px);
    border-left: 1px solid rgba(201,168,76,0.2);
    padding: 60px 40px;
    display: flex; flex-direction: column;
    justify-content: center; position: relative; z-index: 2;
  }
  .form-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px; font-weight: 600;
    color: var(--gold); margin-bottom: 6px;
  }
  .form-sub {
    font-size: 11px; color: var(--grey);
    letter-spacing: 2px; text-transform: uppercase;
    margin-bottom: 30px;
  }
  .form-group { margin-bottom: 16px; }
  .form-group input, .form-group select {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(201,168,76,0.2);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 12px; padding: 13px 16px;
    outline: none; transition: border-color 0.3s;
    appearance: none;
  }
  .form-group input::placeholder { color: var(--grey); }
  .form-group input:focus, .form-group select:focus {
    border-color: var(--gold);
  }
  .form-group select option { background: var(--dark2); color: var(--white); }
  .form-submit {
    width: 100%; padding: 15px;
    background: var(--gold); border: none; cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px; font-weight: 700;
    letter-spacing: 3px; text-transform: uppercase;
    color: var(--dark); margin-top: 8px;
    transition: all 0.3s ease;
  }
  .form-submit:hover { background: var(--gold-light); }
  .form-note {
    font-size: 10px; color: var(--grey);
    text-align: center; margin-top: 12px; line-height: 1.6;
  }

  /* ── TRUST BAR ── */
  .trust-bar {
    background: var(--dark2);
    border-top: 1px solid rgba(201,168,76,0.2);
    border-bottom: 1px solid rgba(201,168,76,0.2);
    padding: 20px 80px;
    display: flex; align-items: center; justify-content: center; gap: 60px;
    flex-wrap: wrap;
  }
  .trust-item {
    display: flex; flex-direction: column; align-items: center; gap: 4px;
  }
  .trust-label {
    font-size: 9px; letter-spacing: 3px;
    color: var(--grey); text-transform: uppercase;
  }
  .trust-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px; font-weight: 600; color: var(--gold);
  }
  .trust-sep {
    width: 1px; height: 40px;
    background: rgba(201,168,76,0.2);
  }

  /* ── SECTIONS ── */
  section { padding: 90px 80px; }

  .section-label {
    font-size: 10px; letter-spacing: 4px;
    color: var(--gold); text-transform: uppercase;
    margin-bottom: 14px; display: block;
  }
  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 4vw, 50px);
    font-weight: 300; line-height: 1.15;
    margin-bottom: 20px;
  }
  .section-title em { font-style: italic; color: var(--gold); }
  .section-divider {
    width: 60px; height: 1px;
    background: var(--gold); margin:0 auto; margin-bottom: 30px;
  }

  /* ── HIGHLIGHTS ── */
  .highlights { background: var(--dark); }
  .highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px; background: rgba(201,168,76,0.15);
    margin-top: 50px;
  }
  .highlight-card {
    background: var(--dark2);
    padding: 40px 30px; text-align: center;
    transition: background 0.3s;
    position: relative; overflow: hidden;
  }
  .highlight-card:hover { background: var(--dark3); }
  .highlight-card::before {
    content: ''; position: absolute;
    bottom: 0; left: 0; right: 0; height: 2px;
    background: var(--gold);
    transform: scaleX(0); transition: transform 0.3s;
  }
  .highlight-card:hover::before { transform: scaleX(1); }
  .highlight-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px; font-weight: 700;
    color: var(--gold); line-height: 1;
    margin-bottom: 8px;
  }
  .highlight-unit {
    font-size: 14px; font-weight: 300; color: var(--gold);
  }
  .highlight-desc {
    font-size: 11px; letter-spacing: 2px;
    color: var(--grey); text-transform: uppercase;
    margin-top: 8px; line-height: 1.6;
  }

  /* ── MARRIOTT BAND ── */
  .marriott-band {
    background: linear-gradient(135deg, var(--gold) 0%, #A8822A 100%);
    padding: 50px 80px;
    display: flex; align-items: center;
    justify-content: space-between; gap: 40px; flex-wrap: wrap;
  }
  .marriott-left .ml-tag {
    font-size: 10px; letter-spacing: 4px;
    color: rgba(13,13,26,0.7); text-transform: uppercase;
    margin-bottom: 10px; display: block;
  }
  .marriott-left .ml-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px; font-weight: 700;
    color: var(--dark); line-height: 1.1;
  }
  .marriott-right {
    display: flex; gap: 40px; flex-wrap: wrap;
  }
  .marriott-feat {
    display: flex; flex-direction: column; gap: 4px;
    border-left: 2px solid rgba(13,13,26,0.3);
    padding-left: 20px;
  }
  .marriott-feat-label {
    font-size: 9px; letter-spacing: 2px;
    color: rgba(13,13,26,0.6); text-transform: uppercase;
  }
  .marriott-feat-val {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px; font-weight: 600; color: var(--dark);
  }

  /* ── FLOOR PLANS ── */
  .floorplans { background: var(--dark2); }
  .fp-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 24px; margin-top: 50px;
  }
  .fp-card {
    border: 1px solid rgba(201,168,76,0.25);
    padding: 50px 40px;
    position: relative; overflow: hidden;
    transition: border-color 0.3s;
  }
  .fp-card:hover { border-color: var(--gold); }
  .fp-card::before {
    content: attr(data-type);
    position: absolute; top: 30px; right: 30px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 100px; font-weight: 700;
    color: rgba(201,168,76,0.05); line-height: 1;
  }
  .fp-type {
    font-size: 10px; letter-spacing: 4px;
    color: var(--gold); text-transform: uppercase;
    margin-bottom: 12px; display: block;
  }
  .fp-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 40px; font-weight: 300; margin-bottom: 6px;
  }
  .fp-sizes {
    font-size: 12px; color: var(--grey);
    letter-spacing: 1px; margin-bottom: 30px;
    line-height: 1.8;
  }
  .fp-price {
    display: inline-block;
    border: 1px solid rgba(201,168,76,0.4);
    padding: 8px 20px;
    font-size: 11px; letter-spacing: 2px;
    color: var(--gold); text-transform: uppercase;
  }

  /* ── AMENITIES ── */
  .amenities { background: var(--dark); }
  .amenities-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 20px; margin-top: 50px;
  }
  .amenity-card {
    padding: 30px 24px;
    border: 1px solid rgba(201,168,76,0.12);
    transition: all 0.3s;
  }
  .amenity-card:hover {
    border-color: rgba(201,168,76,0.4);
    background: rgba(201,168,76,0.04);
  }
  .amenity-icon {
    font-size: 28px; margin-bottom: 14px; display: block;
  }
  .amenity-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px; font-weight: 600;
    margin-bottom: 6px; color: var(--off-white);
  }
  .amenity-desc {
    font-size: 11px; color: var(--grey); line-height: 1.6;
  }

  /* ── LOCATION ── */
  .location { background: var(--dark2); }
  .location-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; margin-top: 50px; align-items: start;
  }
  .loc-points { display: flex; flex-direction: column; gap: 0; }
  .loc-point {
    display: flex; align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(201,168,76,0.1);
    gap: 20px;
  }
  .loc-dist {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px; font-weight: 700; color: var(--gold);
    min-width: 80px; line-height: 1;
  }
  .loc-info-label {
    font-size: 9px; letter-spacing: 3px;
    color: var(--grey); text-transform: uppercase;
  }
  .loc-info-name {
    font-size: 14px; font-weight: 500;
    color: var(--off-white); margin-top: 2px;
  }
  .loc-map {
    background: rgba(201,168,76,0.06);
    border: 1px solid rgba(201,168,76,0.2);
    height: 350px; display: flex;
    align-items: center; justify-content: center;
    flex-direction: column; gap: 14px;
  }
  .loc-map-icon { font-size: 48px; }
  .loc-map-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px; color: var(--gold); text-align: center;
  }
  .loc-map-sub {
    font-size: 11px; color: var(--grey);
    letter-spacing: 2px; text-align: center;
  }

  /* ── CTA SECTION ── */
  .cta-section {
    background: linear-gradient(135deg, var(--dark3) 0%, #272727 100%);
    text-align: center; padding: 90px 80px;
    /*position: relative; overflow: hidden;*/
  }
  .cta-section::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at center, rgba(201,168,76,0.1) 0%, transparent 70%);
    pointer-events: none;
  }
  .cta-section .section-title { font-size: 50px; }
  .cta-phones {
    display: flex; justify-content: center; gap: 30px;
    flex-wrap: wrap; margin: 40px 0;
  }
  .cta-phone-card {
    border: 1px solid rgba(201,168,76,0.3);
    padding: 20px 40px; text-align: center;
    min-width: 220px;
  }
  .cta-phone-label {
    font-size: 9px; letter-spacing: 3px;
    color: var(--grey); text-transform: uppercase;
    margin-bottom: 8px; display: block;
  }
  .cta-phone-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px; font-weight: 600; color: var(--gold);
    text-decoration: none; display: block;
  }
  .whatsapp-btn {
    display: inline-flex; align-items: center; gap: 10px;
    background: #25D366; color: white;
    padding: 14px 32px; text-decoration: none;
    font-size: 13px; font-weight: 600;
    letter-spacing: 1px; margin-top: 10px;
    transition: opacity 0.3s;
  }
  .whatsapp-btn:hover { opacity: 0.9; }

  /* ── FOOTER ── */
  footer {
    background: #080810;
    border-top: 1px solid rgba(201,168,76,0.2);
    padding: 30px 80px; text-align: center;
  }
  .footer-rera {
    font-size: 10px; color: var(--grey);
    letter-spacing: 1px; margin-bottom: 10px; line-height: 1.8;
  }
  .footer-disclaimer {
    font-size: 9px; color: rgba(136,136,153,0.6);
    line-height: 1.7; max-width: 900px; margin: 0 auto;
  }

  /* ── STICKY BOTTOM BAR (mobile) ── */
  .sticky-bar {
    position: fixed; bottom: 0; left: 0; right: 0;
    z-index: 999;
    background: var(--dark2);
    border-top: 1px solid rgba(201,168,76,0.3);
    display: none;
    padding: 12px 20px;
    justify-content: space-between; align-items: center; gap: 10px;
  }
  .sticky-phone {
    font-size: 13px; font-weight: 600; color: var(--gold);
    text-decoration: none;
  }

  /* ── ANIMATIONS ── */
  .fade-in {
    opacity: 0; transform: translateY(30px);
    animation: fadeIn 0.8s ease forwards;
  }
  @keyframes fadeIn {
    to { opacity: 1; transform: translateY(0); }
  }
  .fade-in:nth-child(1) { animation-delay: 0.1s; }
  .fade-in:nth-child(2) { animation-delay: 0.2s; }
  .fade-in:nth-child(3) { animation-delay: 0.3s; }
  .fade-in:nth-child(4) { animation-delay: 0.4s; }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; }
    .hero-form-wrap { border-left: none; border-top: 1px solid rgba(201,168,76,0.2); }
    .hero-content { padding: 40px 24px; }
    section { padding: 60px 24px; }
    .highlights-grid { grid-template-columns: repeat(2,1fr); }
    .fp-grid { grid-template-columns: 1fr; }
    .amenities-grid { grid-template-columns: repeat(2,1fr); }
    .location-grid { grid-template-columns: 1fr; }
    .trust-bar { padding: 20px 24px; gap: 20px; }
    .marriott-band { padding: 40px 24px; }
    .cta-section { padding: 60px 24px; }
    footer { padding: 24px; }
    header { padding: 14px 20px; }
    .sticky-bar { display: flex; }
    body { padding-bottom: 60px; }
  }

.error-msg {
color: #ff2b2b;
    font-size: 13px;
    margin-top: 5px;
    display: block;
    line-height: 1.2;
}

/* error border */
.has-error {
    border-color: #ff2b2b !important;
}


.thanks_page_container {
         display: flex;
         align-items: center;
         justify-content: center;
         padding: 50px 0px;
         box-sizing: border-box;
         width: 100%;
         max-width: 1170px;
         margin: 0 auto;
         }
         .thanks_content_box {
         display: flex;
         flex-direction: column;
         align-items: center;
         justify-content: center;
         width: 100%;
         }
         .thanks_text {
         margin-top: 20px;
         }
         .thanks_text h1 {
         font-family: 'Arial MT';
         font-weight: bold;
         font-size: 80px;
         color: #1D1D1D;
         text-align: center;
         }
         .thanks_text h5 {
         font-family: 'ArialMT';
         font-weight: 500;
         font-size: 24px;
         text-align: center;
         color: #3A3A3A;
         }
         .thanks_text p {
         font-family: 'ArialMT';
         font-weight: 500;
         width: 60%;
         margin: 0 auto;
         margin-top: 30px;
         text-align: center;
         color: #3A3A3A;
         font-size: 16px;
         }
         .thanks_text p span{
         font-weight: bold;
         color: #000000;
         }
         .thanks_bottom_info {
         width: 100%;
         border-top: 1px solid #d9d9d9;
         background-repeat: no-repeat;
         background-size: 100%;
         background-position: top;
         margin-top: 20px;
         padding-top: 20px;
         height: auto;
         }
         .thanks_bottom_info p {
         font-family: 'Arial MT';
         font-weight: bold;
         text-align: center;
         font-size: 16px;
         color: #000000;
         }
         .thanks_bottom_info p span {
         color: #33b00c;
         font-weight: 600;
         }
         .thanks_bottom_info h3 {
         font-family: 'Arial MT';
         font-weight: bold;
         font-size: 24px;
         display: flex;
         align-items: center;
         justify-content: center;
         margin-top: 10px;
         color: #3A3A3A;
         }
         .thanks_bottom_info h3 img {
         margin-right: 15px;
         height: 35px;
         }
         @media(max-width: 767px){
         .thanks_page_wrapper {
         overflow: hidden;
         position: relative;
         width: 100%;
         }
         .thanks_text h1 {
         font-size: 50px;
         }
         .thanks_text h5{
         font-size: 20px;
         }
         .thanks_text p {
         width: 90%;
         margin: 0 auto;
         margin-top: 30px;
         font-size: 14px;
         line-height: 22px;
         }
         .thanks_bottom_info {
         background-repeat: no-repeat;
         background-size: 100% 100%;
         height: auto;
         }

         .cta-section .section-title {
    font-size: 32px;
}
.fp-name{font-size: 28px;}
.hero-form-wrap{padding: 20px 15px;}
    .hero-content {
        padding: 0;
        margin-bottom: 30px;
    }
    .header-phone{display: none;}
    .logo-sub{display: none;}
    header{position: static;}
    .hero-content{margin-top: 15px;}
    .hero {
        grid-template-columns: 1fr;
        display: flex;
        flex-wrap: wrap;
        flex-direction: column-reverse;
        padding-top: 20px;
    } 
    .btn-gold{text-align: center;}
    }

         
         #hihghltleft ul li:nth-child(even) { 
         display: none;
         }
         #hihghltright ul li:nth-child(odd) { 
         display: none;
         }
         .home_page {background-color: #fff;}
         .home_page .infosection-title{
              color: #000 !important;
    font-size: 16px;
    font-family: 'Montserrat';
    font-weight: 400 !important;

         }
         



    .footer-links{
    margin-top:12px;
    display: inline-block;
}

.footer-links a{
    color:#fff;
    text-decoration:none;
    transition:0.3s;
        color: var(--grey);
        font-size: 12px;
}

.footer-links a:hover{
    color:#caa35c;
}



.luxury-popup-wrapper *{
    box-sizing:border-box;
    margin:0;
    padding:0;
}

.luxury-modal{
    position:fixed;
    inset:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.78);
    z-index:999999;
    display:none;
    align-items:center;
    justify-content:center;
    padding:20px;
    backdrop-filter:blur(4px);
}

.luxury-modal-content{
    width:100%;
    max-width:500px;
    background:
    linear-gradient(135deg,#0d1025 0%, #171b37 100%);
    padding:50px 35px;
    position:relative;
    border:1px solid rgba(255,255,255,0.08);
    box-shadow:
    0 10px 40px rgba(0,0,0,0.55),
    0 0 30px rgba(212,170,69,0.08);
    overflow:hidden;

    /* Animation */
    animation:luxuryPopup .45s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Premium Popup Animation */
@keyframes luxuryPopup {

    0%{
        opacity:0;
        transform:scale(0.85) translateY(35px);
    }

    100%{
        opacity:1;
        transform:scale(1) translateY(0);
    }

}

.popup-top-heading{
    text-align:center;
    margin-bottom:35px;
}

.popup-top-heading h2{
    color:#d4aa45;
    font-size:38px;
    font-weight:400;
    margin-bottom:10px;
    line-height:1.2;
}

.popup-top-heading p{
    color:#bdbdbd;
    font-size:11px;
    letter-spacing:2px;
}

.form-group{
    margin-bottom:18px;
}

.form-group input,
.form-group select{
    width:100%;
    height:55px;
    background:rgba(255,255,255,0.03);
    border:1px solid rgba(255,255,255,0.15);
    padding:0 18px;
    color:#fff;
    font-size:14px;
    outline:none;
    transition:0.3s;
}

.form-group input:focus,
.form-group select:focus{
    border-color:#d4aa45;
    box-shadow:0 0 12px rgba(212,170,69,0.2);
}

.form-group select option{
    color:#fff;
}

.form-group input::placeholder{
    color:#d0d0d0;
}

.form-submit{
    width:100%;
    height:58px;
    border:none;
    background:#d4aa45;
    color:#111;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    cursor:pointer;
    transition:0.35s;
    margin-top:5px;
}

.form-submit:hover{
    background:#fff;
    transform:translateY(-2px);
}

.luxury-close{
    position:absolute;
    top:15px;
    right:20px;
    color:#fff;
    font-size:32px;
    cursor:pointer;
    transition:0.3s;
    line-height:1;
}

.luxury-close:hover{
    color:#d4aa45;
    transform:rotate(90deg);
}

/* Mobile Responsive */
@media(max-width:767px){

    .luxury-modal{
        padding:15px;
    }

    .luxury-modal-content{
        padding:40px 20px;
    }

    .popup-top-heading{
        margin-bottom:28px;
    }

    .popup-top-heading h2{
        font-size:30px;
    }

    .popup-top-heading p{
        font-size:10px;
        letter-spacing:1px;
    }

    .form-group input,
    .form-group select{
        height:52px;
        font-size:13px;
    }

    .form-submit{
        height:54px;
        font-size:13px;
    }

}

.luxury-gallery{
    position:relative;
    max-width:1200px;
    margin:auto;
}

.gallery-slider{
    overflow:hidden;
}

.gallery-track{
    display:flex;
    transition:transform 0.5s ease;
}

.gallery-slide{
    min-width:33.333%;
    padding:10px;
    flex-shrink:0;
}

.gallery-slide img{
    width:100%;
    height:420px;
    object-fit:cover;
    border-radius:10px;
    display:block;
    transition:0.4s;
}

.gallery-slide img:hover{
    transform:scale(1.03);
}

/* Buttons */
.gallery-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:52px;
    height:52px;
    border:none;
    background:rgba(0,0,0,0.65);
    color:#fff;
    font-size:24px;
    cursor:pointer;
    z-index:5;
    transition:0.3s;
    border-radius:50%;
}

.gallery-btn:hover{
    background:#d4aa45;
    color:#111;
}

.prev-btn{
    left:-15px;
}

.next-btn{
    right:-15px;
}

/* Tablet */
@media(max-width:991px){

    .section-title{
        font-size:46px;
    }

    .gallery-slide{
        min-width:50%;
    }

    .gallery-slide img{
        height:320px;
    }

}

/* Mobile */
@media(max-width:767px){

    .cta-section{
        padding:70px 15px;
    }

    .section-title{
        font-size:34px;
    }

    .gallery-slide{
        min-width:100%;
    }

    .gallery-slide img{
        height:260px;
    }

    .gallery-btn{
        width:42px;
        height:42px;
        font-size:20px;
    }

    .prev-btn{
        left:5px;
    }

    .next-btn{
        right:5px;
    }

}

.loc-map{
    position:relative;
    width:100%;
    height:420px;
    overflow:hidden;
    border-radius:12px;
}

.loc-map iframe{
    width:100%;
    height:100%;
    border:0;
    filter:grayscale(100%) invert(92%) contrast(85%);
}

/* Overlay */
.loc-map-overlay{
    position:absolute;
    inset:0;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;

    background:rgba(10,10,25,0.35);
    backdrop-filter:blur(1px);

    color:#fff;
}

.loc-map-icon{
    font-size:42px;
    margin-bottom:10px;
}

.loc-map-text{
    font-size:28px;
    font-weight:500;
    color:#d4aa45;
    margin-bottom:8px;
}

.loc-map-sub{
    font-size:15px;
    color:#f1f1f1;
    letter-spacing:1px;
}

/* Mobile */
@media(max-width:767px){

    .loc-map{
        height:300px;
    }

    .loc-map-text{
        font-size:22px;
    }

    .loc-map-sub{
        font-size:13px;
    }

}