:root {
  --rich-black: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
  --golden: linear-gradient(90deg, #d9a441, #b97c1d);
  --card-background: rgba(30, 30, 30, 0.7);
  --card-border: 1px solid rgba(212, 175, 55, 0.2);
  --card-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  --card-hover-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
  --card-hover-border: rgba(212, 175, 55, 0.5);
  --light-golden: #f5ce85;
  --deep-maroon: #400f18;
  --crimson: #6d0f1c;
  --wine-red: #8a1e2d;
  --white: #ffffff;
  --light-gray: #f5f5f5;
  --gradient: linear-gradient(135deg, #ff3050, #b80024);
  --border-radius: 20px;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: var(--light-gray);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.lazy-section {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.lazy-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(168, 0, 36, 0.4);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--light-gray);
  text-align: center;
}

.section-subtitle {
  text-align: center;
  margin-bottom: 3rem;
  color: #666;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.gradient-divider {
  height: 4px;
  width: 80px;
  background: var(--golden);
  margin: 0 auto 2rem;
  border-radius: 2px;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  color: var(--white);
  text-align: center;
  overflow: hidden;
}

/* Background video styling */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Ensures full coverage like background-size: cover */
  z-index: 0;
}

/* Gradient overlay on video */
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(64, 15, 24, 0), rgba(64, 15, 24, 0.5));
  z-index: 1;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
  /* Keeps text above the video and gradient */
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.brochure-btn {
  display: inline-block;
  /* allow transform reliably */
  width: auto;
  background: var(--golden);
  color: var(--light-gray);
  border: none;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 18px;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  margin-top: 5px;
  box-shadow: var(--card-shadow);
  will-change: transform;
  /* hint for smoother animation */
}

/* Hover: lift up slightly and intensify shadow */
.brochure-btn:hover {
  transform: translateY(-6px);
  /* use transform, not 'translate' */
  box-shadow: var(--card-hover-shadow);
}

/* Optional: subtle press effect */
.brochure-btn:active {
  transform: translateY(-2px) scale(0.995);
}

.search-box {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(2px);
  border-radius: var(--border-radius);
  padding: 25px;
  margin-top: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.search-filters {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-bottom: 20px;
}

.filter-group {
  text-align: left;
}

.filter-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  opacity: 0.9;
}

.filter-group select,
.filter-group input {
  width: 100%;
  padding: 12px 15px;
  border-radius: 10px;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  font-family: "Poppins", sans-serif;
}

.search-btn {
  width: 100%;
  padding: 15px;
  font-size: 1.1rem;
}

/* Featured Properties */
.featured-properties {
  padding: 100px 0;
  background: var(--rich-black);
}

.properties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.property-card {
  background: var(--card-background);
  box-shadow: var(--card-shadow);
  border: var(--card-border);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

.property-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--card-hover-shadow);
  border-color: var(--card-hover-border);
}

.property-img {
  height: 250px;
  overflow: hidden;
  position: relative;
}

.property-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.property-card:hover .property-img img {
  transform: scale(1.1);
}

.property-type {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--golden);
  color: var(--rich-black);
  padding: 8px 15px;
  border-radius: 30px;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.property-details {
  padding: 25px;
}

.property-details h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--light-gray);
}

.property-details p {
  color: #666;
  margin-bottom: 10px;
}

.property-location {
  color: var(--light-golden);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.property-location i {
  margin-right: 8px;
  color: var(--light-golden);
}

.property-features {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.property-features span:first-child {
  color: var(--light-golden);
}

.property-features span:last-child {
  font-size: 1.1rem;
  font-weight: 600;
  background: var(--golden);
  -webkit-background-clip: text;
  /* Applies gradient to text area */
  -webkit-text-fill-color: transparent;
  /* Makes actual text transparent */
}

.view-details {
  width: 100%;
  text-align: center;
}

/* Property Categories Section */
.property-categories {
  padding: 100px 0;
  background: var(--light-golden);
  position: relative;
}

.property-categories h2 {
  color: var(--deep-maroon);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.category-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  cursor: pointer;
}

.category-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.category-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 20px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #fff;
  transition: all 0.4s ease;
}

.category-card:hover .category-icon {
  transform: scale(1.2) rotate(10deg);
}

.gradient-bg {
  background: linear-gradient(135deg, #d9a441, #b97c1d);
  box-shadow: 0 8px 20px rgba(217, 164, 65, 0.4);
}

.category-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #333;
}

.category-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
  .category-card {
    padding: 25px 15px;
  }

  .category-icon {
    width: 70px;
    height: 70px;
    font-size: 26px;
  }
}

/* About Section */
.about {
  padding: 100px 0;
  background: var(--rich-black);
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  flex-wrap: wrap;
}

.about-img {
  flex: 1;
  min-width: 320px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  will-change: transform;
}

.about-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}

.about-img:hover img {
  transform: scale(1.08);
}

.about-img:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.about-text {
  flex: 1;
  color: #333;
}

.about-text h2 {
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--light-gray);
}

.about-text h2 .highlight {
  background: var(--golden);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  color: #666;
}

.trust-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin: 2rem 0;
}

.trust-point {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: #666;
}

.trust-point i {
  color: #d9a441;
  font-size: 1.5rem;
}

/* Responsive */
@media (max-width: 991px) {
  .about-content {
    flex-direction: column;
    gap: 50px;
  }

  .about-text h2 {
    font-size: 2.2rem;
  }
}

/* Project Details */
.project-details {
  background: var(--light-golden);
  padding: 100px 0;
}

.project-details .section-title {
  color: var(--deep-maroon);
}

.project-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  flex-wrap: wrap;
}

.project-content i {
  margin-top: -5px;
  background: var(--golden);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.project-content span {
  margin-bottom: 10px;
  color: var(--crimson);
}

.project-left-content {
  flex: 1;
  min-width: 320px;
  border-radius: 20px;
}

.project-right-content {
  flex: 1;
}

/* Gallery Section */
.project-gallery {
  position: relative;
  padding: 50px 0;
  overflow: hidden;
}

.project-gallery::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../images/1.jpg) center / cover no-repeat;
  filter: blur(5px);
  transform: scale(1.1);
  z-index: 0;
}

.project-gallery * {
  position: relative;
  z-index: 1;
}

.project-gallery h2 {
  color: var(--light-gray);
}

.gallery-container {
  position: relative;
  width: 100%;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Left side text */
.text-section {
  position: absolute;
  left: 50px;
  top: 50%;
  transform: translateY(-50%);
  max-width: 400px;
  z-index: 5;
  color: var(--deep-maroon);
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 16px;
}

.text-section h1 {
  font-size: 45px;
  font-weight: 500;
  margin-bottom: 10px;
}

.text-section h1 span {
  display: block;
  font-size: 20px;
  font-style: italic;
  color: #555;
  margin-bottom: 6px;
  font-weight: 400;
}

.text-section p {
  font-size: 15px;
  color: var(--crimson);
  line-height: 1.6;
  opacity: 0.9;
}

/* Gallery section */
.gallery {
  display: flex;
  align-items: center;
  gap: 40px;
  white-space: nowrap;
  position: absolute;
  left: 0;
}

.card {
  flex-shrink: 0;
  width: 280px;
  height: 380px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: transform 0.5s ease;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card:hover {
  transform: scale(1.05);
  z-index: 3;
}

/* Overlay removed */
.card-overlay {
  display: none;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .text-section {
    left: 40px;
    max-width: 250px;
  }

  .text-section h1 {
    font-size: 25px;
  }

  .text-section h1 span {
    font-size: 15px;
  }
}

@media (max-width: 600px) {
  .gallery {
    top: 50%;
    animation: slide 18s linear infinite;
  }

  .gallery-container {
    height: 50rem;
  }

  .text-section {
    left: 20px;
    top: 0%;
    transform: translateY(0);
  }
}

/* Floor Plan */
.floor-plans {
  padding: 100px 0;
  position: relative;
  background: var(--rich-black);
}

/* ==== TAB BUTTONS ==== */
.type-buttons {
  text-align: center;
  margin-bottom: 30px;
}

.type-buttons button {
  background: none;
  border: none;
  color: #888;
  font-size: 1.1rem;
  margin: 8px 10px;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: 0.3s ease;
  padding: 6px 14px;
  border: var(--card-border);
  border-radius: var(--border-radius);
}

.type-buttons button.active {
  background: var(--golden);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  box-shadow: var(--card-hover-shadow);
  border-color: var(--card-hover-border);
}

.type-buttons button:hover {
  background: var(--golden);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ==== PLAN IMAGE ==== */
.plan-content {
  display: none;
  text-align: center;
  
}

.plan-content.active {
  display: block;
  animation: fadeIn 0.6s ease-in-out;
}

.plan-image img {
  width: 100%;
  max-width: 900px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  border: 4px solid var(--card-hover-border);
}

/* Fade animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .plan-image img {
    max-width: 100%;
  }
}


/* Uncommon Experience */
.experience-section {
  background: var(--light-golden);
  padding: 100px 0;
}

/* Container for text + image */
.experience-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 200px;
  width: 77%;
  margin: auto;
}

/* Left text section */
.text-content {
  flex: 1;
}

.frosted-box {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 25px 30px;
  color: #fff;
  text-align: justify;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.frosted-box h2 {
  font-size: 2.8rem;
  letter-spacing: 4px;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  color: var(--crimson);
  font-weight: 600;
}

.frosted-box p {
  font-size: 1rem;
  /* line-height: 1.8; */
  color: var(--crimson);
  font-family: "Poppins", sans-serif;
}

/* Right image section */
.image-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 2rem;
}

.image-grid .img-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.image-grid .img-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.9) contrast(1.1) saturate(1.1);
}

.image-grid .img-item:hover img {
  transform: scale(1.05);
  filter: brightness(1) contrast(1.2) saturate(1.3);
}

/* Different sizing for a dynamic layout */
.image-grid .large {
  grid-row: span 2;
}

.image-grid .medium {
  grid-row: span 1;
}

.image-grid .small {
  grid-row: span 1;
}

/* Responsive layout */
@media (max-width: 1024px) {
  .experience-container {
    flex-direction: column;
    text-align: center;
    gap: 50px;
  }

  .experience-image {
    width: 100%;
    height: 300px;
  }

  .image-grid .img-item img {
    width: 100%;
    height: 100%;
  }

  .frosted-box {
    padding: 30px 25px;
  }

  .frosted-box h2 {
    font-size: 2.2rem;
  }

  .frosted-box p {
    font-size: 1rem;
  }
}

/* Amenities Section */
.amenities {
  padding: 100px 0;
  background: var(--rich-black);
}

.amenities h2 {
  color: var(--light-gray);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.amenity-card {
  background: var(--card-background);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius);
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  border: var(--card-border);
}

.amenity-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--card-hover-shadow);
  border-color: var(--card-hover-border);
}

.amenity-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--golden);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--white);
  font-size: 2rem;
}

.amenity-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--light-gray);
}

.amenity-card p {
  color: #666;
}

@media (max-width: 768px) {
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 cards per row */
  }

  .amenity-card {
    min-width: 0; /* override min-width from auto-fit */
    padding: 20px; /* optional: smaller padding */
  }
}

/* Optional: very small screens (<480px) */
@media (max-width: 480px) {
  .amenities-grid {
    grid-template-columns: 1fr; /* 1 card per row for tiny screens */
  }
}

/* Blogs */
.blog {
  padding: 100px 0;
  background-color: var(--light-golden);
}

.blog h2 {
  color: var(--deep-maroon);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
  margin: 40px auto 0 auto;
  align-items: stretch;
}

/* Blog Card */
.blog-card {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(15px);
  border-radius: var(--border-radius);
  overflow: hidden; /* Required for image zoom crop */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* smoother hover */
  text-decoration: none;
  color: inherit;
  width: 350px;
  cursor: pointer;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Image container */
.blog-img {
  overflow: hidden; /* Important to crop zoomed image */
}

.blog-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease; /* smooth zoom effect */
}

/* Zoom effect on hover */
.blog-card:hover .blog-img img {
  transform: scale(1.1);
}

/* Content */
.blog-content {
  padding: 25px 20px;
}

.blog-title {
  font-weight: 600;
  color: var(--deep-maroon);
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.blog-text {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--crimson);
  border: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  text-decoration: none;
  align-self: flex-start;
}

.read-more:hover {
  color: var(--deep-maroon);
  transform: translateX(5px);
}
.view-more-card {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--wine-red);
  background: transparent;
  border: 2px solid var(--wine-red);
  border-radius: var(--border-radius);
  text-decoration: none;
  font-size: 1rem;
  cursor: pointer;
  margin: 200px 0px;
  height: 10%; /* match card height */
  transition: color 0.3s ease, var(--transition);
}

.view-more-card:hover {
  background-color: var(--wine-red);
  color: #fff;
  transform: translateX(5px);
}

/* ===== Responsive Styles ===== */
@media (max-width: 1200px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}

@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  .view-more-card {
    font-size: 0.95rem;
    padding: 20px;
    width: 70%;
    margin: 200px 70px;
  }
  .blog-card{
    width: auto;
  }
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .blog {
    padding: 60px 15px;
  }

  .blog-title {
    font-size: 1.1rem;
  }

  .blog-text {
    font-size: 0.9rem;
  }

  .view-more-card {
    font-size: 0.95rem;
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .blog-card {
    display: block;
    width: 100%;
  }
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .view-more-card {
    margin: 0;
    width: 100%;
    transform: translateY(-2px);
  }
}

/* Agents Section */
.agents {
  padding: 100px 0;
  background: var(--rich-black);
}

.agents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
}

.agent-card {
  background: var(--card-background);
  box-shadow: var(--card-shadow);
  border: var(--card-border);
  border-radius: var(--border-radius);
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.agent-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--card-hover-shadow);
  border-color: var(--card-hover-border);
}

.agent-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 5px solid var(--light-gray);
}

.agent-img img {
  width: 100%;
  /* height: 100%; */
  object-fit: cover;
}

.agent-info h3 {
  font-size: 1.3rem;
  margin-bottom: 5px;
  color: var(--light-gray);
}

.agent-role {
  color: var(--light-golden);
  /* margin-bottom: 15px; */
  font-weight: 500;
}

.agent-company {
  background: var(--golden);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 15px;
}

.agent-desc {
  color: #aaa;
}

.agent-social {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.agent-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--light-gray);
  transition: var(--transition);
}

.agent-social a:hover {
  background: var(--golden);
  color: var(--white);
  transform: translateY(-3px);
}

.channel-partner-section {
  text-align: center;
  padding: 60px 20px;
  background-color: #faf8f5;
}

.partner-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin: 30px 0;
}

.partner-logo img {
  width: 180px;
  height: auto;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.1));
  transition: transform 0.3s ease;
}

.partner-logo img:hover {
  transform: scale(1.05);
}

.partner-text h3 {
  font-size: 15px;
  color: var(--light-golden);
  font-weight: 600;
}

.partner-text span {
  color: var(--light-golden);
  font-weight: 700;
  font-size: 28px;
}

.partner-description {
  max-width: 800px;
  margin: 0 auto;
  color: #aaa;
  font-size: 16px;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .partner-container {
    gap: 23px;
  }
}

/* Location Section */
.project-location {
  padding: 100px 0;
  background: var(--light-golden);
}

.location-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.project-location-map {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: 400px;
}

.project-location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.location-info h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--deep-maroon);
}

.location-info p {
  margin-bottom: 1.5rem;
  color: var(--crimson);
  line-height: 1.7;
  font-size: 1rem;
  text-align: justify;
}

/* === Responsive Design === */

/* Large tablets (≤ 992px) */
@media (max-width: 992px) {
  .project-location {
    padding: 80px 0;
  }

  .location-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .location-info h2 {
    font-size: 2.2rem;
  }

  .location-info p {
    font-size: 0.95rem;
  }

  .project-location-map {
    height: 350px;
  }
}

/* Tablets and small devices (≤ 768px) */
@media (max-width: 768px) {
  .project-location {
    padding: 70px 0;
  }

  .project-location .gradient-divider {
    margin: 0 auto 2rem !important;
  }

  .location-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .location-info p {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .project-location-map {
    height: 320px;
  }
}

/* Mobile devices (≤ 576px) */
@media (max-width: 576px) {
  .project-location {
    padding: 60px 0;
  }

  .location-content {
    gap: 30px;
  }

  .location-info h2 {
    font-size: 1.8rem;
  }

  .location-info p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }

  .project-location-map {
    height: 280px;
    border-radius: 10px;
  }
}

/* Very small devices (≤ 400px) */
@media (max-width: 400px) {
  .location-info h2 {
    font-size: 1.6rem;
  }

  .project-location-map {
    height: 250px;
  }
}

.cta-section {
  padding: 100px 0;
  background: var(--light-golden);
  color: var(--crimson);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.cta-content p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 35px;
}

.cta-buttons .btn-primary {
  display: inline-block;
  /* Ensures transform works */
  padding: 15px 35px;
  margin: 5px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary {
  background: var(--golden);
  color: var(--light-gray);
  box-shadow: var(--card-shadow);
}

.btn-primary:hover {
  transform: translateY(-6px);
  /* lift upward for hover effect */
}

.btn-primary:active {
  transform: translateY(-2px);
  /* small press effect */
}

/* Responsive */
@media (max-width: 768px) {
  .cta-content h2 {
    font-size: 2rem;
  }

  .cta-content p {
    font-size: 1rem;
  }

  .cta-buttons {
    display: inline-grid;
    gap: 10px;
  }

  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary {
    padding: 12px 25px;
    font-size: 0.9rem;
  }
}

.about-dasnac {
  padding: 100px 0;
  background: var(--rich-black);
}

.about-dasnac p {
  color: #aaa;
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 16px;
}

.about-dasnac .about-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 50px;
}

.about-dasnac .about-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: var(--card-shadow);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.about-dasnac .about-image img:hover {
  transform: scale(1.05);
  box-shadow: var(--card-hover-shadow);
}

.about-dasnac .brochure-btn {
  width: auto;
  background: var(--golden);
  color: var(--light-gray);
  border: none;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--card-shadow);
}

.brochure-btn:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-hover-shadow);
}

/* === Stats Section === */
.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 80px;
  text-align: center;
  border-radius: 12px;
  padding: 60px 20px;
  backdrop-filter: blur(4px);
  position: relative;
}

.stat h3 {
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
}

.stat .count {
  font-size: 48px;
  line-height: 1;
}

.stat h3 {
  font-size: 28px;
}

.stat h3 {
  font-weight: 700;
  background: var(--golden);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat h3 span + {
  font-size: 20px;
  transform: translateY(-10px);
  display: inline-block;
}

.stat p {
  font-size: 14px;
  letter-spacing: 1px;
  color: #aaa;
  text-transform: uppercase;
  margin-top: 8px;
  line-height: 1.6;
}

/* Divider not needed — handled by grid */
.divider {
  display: none;
}

/* === Responsive Breakpoints === */

/* Large tablets (≤ 992px) */
@media (max-width: 992px) {
  .about-dasnac .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .about-dasnac .about-image {
    order: -1; /* Move image above text */
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 40px;
    padding: 40px 10px;
  }

  .stat h3 {
    font-size: 24px;
  }

  .stat span {
    font-size: 40px;
  }
}

/* Tablets and small devices (≤ 768px) */
@media (max-width: 768px) {
  .about-dasnac {
    padding: 80px 0;
  }

  .about-dasnac p {
    font-size: 15px;
  }

  .about-dasnac .brochure-btn {
    font-size: 15px;
    padding: 10px 20px;
  }

  .about-stats {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .stat span {
    font-size: 36px;
  }

  .stat h3 {
    font-size: 22px;
  }
}

/* Mobile (≤ 576px) */
@media (max-width: 576px) {
  .about-dasnac {
    padding: 60px 0;
  }

  .about-dasnac .about-content {
    gap: 30px;
  }

  .about-stats {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 30px 10px;
  }

  .stat span {
    font-size: 32px;
  }

  .stat h3 {
    font-size: 20px;
  }

  .stat p {
    font-size: 13px;
  }

  .about-dasnac .brochure-btn {
    width: 100%;
    padding: 12px;
  }
}

/* Contact Section */
.project-contact {
  padding: 100px 0;
  background: linear-gradient(
      rgba(255, 255, 255, 0.2),
      rgba(255, 255, 255, 0.2)
    ),
    url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80")
      no-repeat center center/cover;
}

.project-contact h2 {
  color: var(--deep-maroon);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-form {
  padding: 40px;
  border-radius: var(--border-radius);
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--crimson);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  font-family: "Poppins", sans-serif;
  transition: var(--transition);
  color: var(--crimson);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--wine-red);
  outline: none;
  color: var(--crimson);
}

.form-group textarea {
  height: 150px;
  resize: vertical;
}

.contact-info {
  padding: 40px;
  border-radius: var(--border-radius);
  background-color: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--deep-maroon);
}

.contact-details {
  margin-bottom: 30px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.contact-detail i {
  color: var(--wine-red);
  margin-right: 10px;
  margin-top: 5px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .about-content,
  .contact-container {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .search-filters {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input {
    border-radius: var(--border-radius);
    margin-bottom: 10px;
  }

  .newsletter-form button {
    border-radius: var(--border-radius);
    width: 100%;
  }

  .hero h1 {
    font-size: 2.2rem;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 2rem;
  }

  .hero h1 {
    font-size: 1.8rem;
  }
}

/* Animations */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === Modal Overlay === */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s ease;
  z-index: 99999;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* === Enquiry Box === */
.enquiry-box {
  /* position: relative; */
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  max-width: 500px;
  width: 90%;
  transform: translateY(50px);
  opacity: 0;
  z-index: 100000;
  transition: all 0.6s ease;
}

.modal-overlay.active .enquiry-box {
  opacity: 1;
  transform: translateY(0);
}

/* === Heading === */
.enquiry-box h2 {
  text-align: center;
  margin-bottom: 15px;
  font-size: 1.8rem;
  background: var(--golden);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* === Form === */
.form label {
  font-size: 15px;
  /* font-weight: 500; */
  color: #333;
  display: block;
  margin-bottom: 2px;
}

form .form-group {
  margin-bottom: 5px;
}

/* === Button === */
.btn {
  width: 100%;
  background: var(--golden);
  border: none;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn:hover {
  background: var(--golden);
  transform: translateY(-2px);
}

/* === Close Button === */
.close-btn {
  position: absolute;
  top: 12px;
  right: 15px;
  font-size: 28px;
  background: linear-gradient(90deg, #d9a441, #b97c1d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  cursor: pointer;
  z-index: 100001;
  transition: all 0.3s;
}

.close-btn:hover {
  transform: scale(1.1);
}

/* === Responsive Design === */

/* Tablets */
@media (max-width: 768px) {
  .enquiry-box {
    width: 95%;
    padding: 20px;
  }

  .enquiry-box h2 {
    font-size: 1.5rem;
  }

  .form label {
    font-size: 14px;
  }

  .btn {
    font-size: 15px;
    padding: 10px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .enquiry-box {
    width: 92%;
    padding: 18px;
    border-radius: 12px;
  }

  .enquiry-box h2 {
    font-size: 1.3rem;
  }

  .form input,
  .form select,
  .form textarea {
    font-size: 14px;
    padding: 9px 10px;
  }

  .btn {
    font-size: 14px;
    padding: 10px;
  }

  .close-btn {
    font-size: 24px;
  }
}

/* === Fixed Social Icons === */
.social-fixed {
  position: fixed;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1000;
  opacity: 0;
  animation: slideInSocial 1s ease forwards;
}

/* === Icon Styling === */
.social-fixed .social-icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #d9a441, #b97c1d);
  color: #fff;
  font-size: 18px;
  border-radius: 50%;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  opacity: 0;
  transform: translateX(-40px);
  animation: iconSlide 1s ease forwards;
}

.social-fixed .social-icon:nth-child(1) {
  animation-delay: 0.3s;
}

.social-fixed .social-icon:nth-child(2) {
  animation-delay: 0.5s;
}

.social-fixed .social-icon:nth-child(3) {
  animation-delay: 0.7s;
}

.social-fixed .social-icon:nth-child(4) {
  animation-delay: 0.9s;
}

/* === Hover Effect === */
.social-fixed .social-icon:hover {
  transform: translateX(5px) scale(1.1);
  background: linear-gradient(90deg, #b97c1d, #d9a441);
  color: #fff;
}

/* === Slide Animations === */
@keyframes slideInSocial {
  0% {
    opacity: 0;
    transform: translateY(-50%) translateX(-60px);
  }

  100% {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }
}

@keyframes iconSlide {
  0% {
    opacity: 0;
    transform: translateX(-40px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* === Mobile Responsive === */
@media (max-width: 768px) {
  .social-fixed .social-icon {
    display: none;
  }

  @keyframes slideInSocial {
    0% {
      opacity: 0;
      transform: translateY(60px);
    }

    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes iconSlide {
    0% {
      opacity: 0;
      transform: translateY(40px);
    }

    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* === Floating Contact Button === */
.floating-contact {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 9999;
}

/* Main button */
.floating-btn {
  position: relative;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: linear-gradient(90deg, #d9a441, #b97c1d);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(185, 124, 29, 0.5);
  transition: transform 0.3s ease;
  animation: pulse 2.5s infinite;
}

.floating-btn:hover {
  transform: scale(1.1);
}

/* Pulse Animation */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(217, 164, 65, 0.6);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(217, 164, 65, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(217, 164, 65, 0);
  }
}

/* Tooltip */
.tooltip {
  position: absolute;
  right: 70px;
  bottom: 20px;
  background: white;
  color: #b97c1d;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(5px);
  pointer-events: none;
  transition: 0.3s;
}

/* ✅ Show tooltip only when NOT active and NOT hovered */
.floating-contact:not(.active):hover .tooltip {
  opacity: 1;
  transform: translateY(0);
}

/* Contact icons */
.contact-icons {
  position: absolute;
  bottom: 70px;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transform: scale(0);
  opacity: 0;
  transform-origin: bottom right;
  transition: all 0.4s ease;
}

.floating-contact.active .contact-icons {
  transform: scale(1);
  opacity: 1;
}

.floating-contact.active .floating-btn {
  transform: rotate(180deg);
  background: linear-gradient(90deg, #b97c1d, #d9a441);
}

.floating-contact.active .floating-btn i {
  transform: rotate(180deg);
}

/* Each small icon */
.icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background 0.3s ease;
}

.icon:hover {
  transform: scale(1.1);
}

/* WhatsApp & Phone colors */
.icon.whatsapp {
  background: #25d366;
}

.icon.phone {
  background: #007bff;
}

/* Responsive */
@media (max-width: 768px) {
  .floating-btn {
    display: none;
  }
}

/* === Fixed Enquiry Tab === */
.enquiry-tab {
  position: fixed;
  border: none;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: #fff;
  padding: 14px 5px;
  font-weight: 600;
  font-size: 1rem;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  letter-spacing: 1px;
  z-index: 9999;
  transition: all 0.3s ease;
}

.enquiry-tab:hover {
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding-right: 10px;
}

@media (max-width: 768px) {
  .enquiry-tab {
    display: none;
  }
}

/* === Fixed Bottom Contact Bar (Mobile) === */
.bottom-contact-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: none; /* Hidden on desktop */
  justify-content: space-around;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 8px;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.contact-btn {
  flex: 1;
  text-align: center;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  padding: 12px 0;
  border-radius: 6px;
  margin: 0 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: background 0.3s ease;
  font-size: 0.95rem;
}

/* === Button Colors === */
.call-btn {
  background: #007bff;
}

.enquiry-btn {
  background: var(--golden);
  border: none;
}

.whatsapp-btn {
  background: #25d366;
  color: #fff;
}

.contact-btn:hover {
  opacity: 0.9;
}

/* === Show only on Mobile === */
@media (max-width: 768px) {
  .bottom-contact-bar {
    display: flex;
  }
}

.phone-input {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 6px 10px;
}

.phone-input input {
  border: none;
  flex: 1;
  outline: none;
}

.flag-icon {
  width: 20px;
  height: 15px;
}

.country-code {
  font-weight: 600;
}

.error-msg {
  color: red;
  font-size: 13px;
  display: none;
}
