.elementor-2238 .elementor-element.elementor-element-4ee598e{--display:flex;--min-height:646px;--overlay-opacity:0.58;}.elementor-2238 .elementor-element.elementor-element-4ee598e:not(.elementor-motion-effects-element-type-background), .elementor-2238 .elementor-element.elementor-element-4ee598e > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-image:url("https://lagomspaces.com/wp-content/uploads/2025/08/Emaar-Urban-Ascent.jpeg");background-position:bottom center;background-size:cover;}.elementor-2238 .elementor-element.elementor-element-4ee598e::before, .elementor-2238 .elementor-element.elementor-element-4ee598e > .elementor-background-video-container::before, .elementor-2238 .elementor-element.elementor-element-4ee598e > .e-con-inner > .elementor-background-video-container::before, .elementor-2238 .elementor-element.elementor-element-4ee598e > .elementor-background-slideshow::before, .elementor-2238 .elementor-element.elementor-element-4ee598e > .e-con-inner > .elementor-background-slideshow::before, .elementor-2238 .elementor-element.elementor-element-4ee598e > .elementor-motion-effects-container > .elementor-motion-effects-layer::before{background-color:#000000;--background-overlay:'';}.elementor-2238 .elementor-element.elementor-element-5442545{--display:flex;}.elementor-2238 .elementor-element.elementor-element-27d775f{--display:flex;}.elementor-2238 .elementor-element.elementor-element-d4a2ff8{--display:flex;}.elementor-2238 .elementor-element.elementor-element-d4a2ff8:not(.elementor-motion-effects-element-type-background), .elementor-2238 .elementor-element.elementor-element-d4a2ff8 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#F0F0F0;}.elementor-2238 .elementor-element.elementor-element-c967b4c{--display:flex;}.elementor-2238 .elementor-element.elementor-element-08a04a7{--display:flex;}.elementor-2238 .elementor-element.elementor-element-a902d28{--display:flex;}.elementor-2238 .elementor-element.elementor-element-4d7199a{--display:flex;}@media(max-width:767px){.elementor-2238 .elementor-element.elementor-element-4ee598e:not(.elementor-motion-effects-element-type-background), .elementor-2238 .elementor-element.elementor-element-4ee598e > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-position:bottom center;}.elementor-2238 .elementor-element.elementor-element-07af420{margin:47px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;}}/* Start custom CSS for html, class: .elementor-element-07af420 */.emaar-hero {
  position: relative;
  background: url('your-background.jpg') center/cover no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.emaar-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0);
  z-index: 1;
}

.emaar-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  max-width: 1200px;
  gap: 40px;
  color: #fff;
}

/* LEFT: Hero Text */
.hero-text {
  flex: 1.2;
  animation: fadeInUp 1.2s ease-out both;
}

.hero-text h1 div {
  display: block;
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 5px;
}

/* Glowing effect for all lines */
.hero-text .glow-text {
  color: #fff;
  text-shadow:
    0 0 5px rgba(255, 255, 255, 0.3),
    0 0 10px rgba(212, 175, 55, 0.2),
    0 0 15px rgba(212, 175, 55, 0.1);
}


/* EMAAR gold tint (kept as span for possible extra styling) */
.hero-text h1 span {
  color: #ffe490;
}


.emaar-cta-btn {
  display: inline-block;
  background: linear-gradient(45deg, #d4af37, #ffe58a);
  color: #000;
  padding: 12px 30px;
  font-weight: bold;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.emaar-cta-btn:hover {
  background: linear-gradient(45deg, #ffe58a, #d4af37);
  color: #000;
}

/* RIGHT: Consultation Form */
.emaar-hero-form {
  flex: 0 0 300px;
  background: rgba(255, 255, 255, 0.95);
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  animation: fadeInUp 1.5s ease-out both;
}

.emaar-hero-form h3 {
  color: #222;
  margin-bottom: 15px;
  font-size: 1.4rem;
  font-weight: 600;
  text-align: center;
}

.emaar-hero-form input {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
}

.emaar-hero-form button {
  width: 100%;
  background: #d4af37;
  color: #000;
  font-weight: bold;
  padding: 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.emaar-hero-form button:hover {
  background: #b18b2e;
  color: #fff;
}

/* Fade animation */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ✅ Responsive Styles */
@media (max-width: 768px) {
  .emaar-hero {
    height: auto;
    padding: 60px 20px;
  }

  .emaar-hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-text {
    order: 1;
  }

  .hero-text h1 div {
    font-size: 2.2rem;
  }

  .hero-text p {
    font-size: 1rem;
    max-width: 100%;
  }

  .emaar-hero-form {
    width: 100%;
    margin-top: 30px;
    order: 2;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-a521915 *//* Section Base */
.emaar-section {
  padding: 50px 10%;
  text-align: center;
}

.emaar-section h2 {
  color: #d4af37;
  margin-bottom: 30px;
  font-size: 28px;
}

/* Grid Layout */
.emaar-highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

/* Card Style */
.emaar-highlight-card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #eee;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  cursor: default;
}

.emaar-highlight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  border-color: #d4af37;
}

/* Icon Style */
.emaar-highlight-icon {
  font-size: 30px;
  color: #d4af37;
  display: block;
  margin-bottom: 10px;
}

/* Text Style */
.emaar-highlight-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  line-height: 1.4;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-cad249b *//* About Section Container */
.emaar-about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* Image Styling */
.emaar-about-image img {
    
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

/* Content Styling */
.emaar-about-content h2 {
  color: #d4af37;
  margin-bottom: 15px;
}

.emaar-about-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Bullet Points */
.emaar-about-points {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.emaar-about-points li {
  background: #fff;
  border: 1px solid #eee;
  border-left: 4px solid #d4af37;
  padding: 10px 15px;
  margin-bottom: 10px;
  border-radius: 6px;
  font-size: 15px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.emaar-about-points li:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Button Styling (Reusing CTA) */
.emaar-cta-btn {
  display: inline-block;
  padding: 12px 25px;
  background: #d4af37;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: 0.3s;
}

.emaar-cta-btn:hover {
  background: #b28a2b;
}

/* Responsive */
@media (max-width: 900px) {
  .emaar-about-container {
    grid-template-columns: 1fr;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-0b650a4 */.emaar-pricing-table {
  width: 100%;
  border-collapse: collapse;
}

.emaar-pricing-table th, 
.emaar-pricing-table td {
  border: 1px solid #ddd;
  padding: 12px;
  text-align: center;
}

.emaar-pricing-table th {
  background: #f4f4f4;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-6b1c527 */.emaar-gallery {
  padding: 80px 20px;
  background: #f9f9f9;
  text-align: center;
}

.emaar-gallery h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #222;
  position: relative;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-item.large {
    grid-column: span 1;
    grid-row: span 1;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-06ce161 */.emaar-amenities {
  padding: 70px 20px;
  background: #f8f8f8;
  text-align: center;
}

.section-title {
  font-size: 2.6rem;
  color: #d4af37;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 40px;
}

.amenities-container {
  max-width: 1200px;
  margin: auto;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.amenity-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.amenity-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.amenity-card:hover img {
  transform: scale(1.05);
}

.amenity-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0));
  color: #fff;
  padding: 20px;
  text-align: left;
  opacity: 1;
  transition: all 0.3s ease;
}

.amenity-overlay h3 {
  font-size: 1.3rem;
  margin: 0;
  color: #ffd700;
}

.amenity-overlay p {
  font-size: 0.95rem;
  margin-top: 5px;
  color: #eee;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  .amenity-overlay h3 {
    font-size: 1.1rem;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-167c5ac */.emaar-location {
  padding: 50px 20px;
  background: #fafafa;
}

.emaar-location h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #d4af37; /* gold tone */
  margin-bottom: 15px;
}

.emaar-location p {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 20px;
}

.location-flex {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.connectivity-list {
  flex: 1;
  min-width: 300px;
}

.connectivity-list ul {
  list-style: none;
  padding-left: 0;
}

.connectivity-list ul li {
  font-size: 1.05rem;
  padding: 8px 0;
  border-bottom: 1px solid #ddd;
}

.connectivity-list ul li strong {
  color: #000;
}

.map-container {
  flex: 1;
  min-width: 300px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
  .emaar-location h2 {
    font-size: 1.8rem;
  }
  .connectivity-list ul li {
    font-size: 1rem;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-b28198a */.emaar-contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.emaar-contact-form input, 
.emaar-contact-form textarea, 
.emaar-contact-form button {
  padding: 12px;
  font-size: 16px;
}

.emaar-contact-form button {
  background: #d4af37;
  color: #fff;
  border: none;
  cursor: pointer;
}

.emaar-contact-form button:hover {
  background: #b28a2b;
}/* End custom CSS */