/* Hero Section Styles */
#hero {
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  color: var(--dark);
  position: relative;
  overflow: hidden;
  background-color: var(--light);
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

.hero-content {
  text-align: center;
  max-width: 600px;
  z-index: 1;
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  color: var(--dark);
}

.hero-content p {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-xl);
  color: var(--gray-700);
  font-family: var(--font-accent);
}

.hero-image {
  position: relative;
  height: 600px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.hero-buttons {
  display: inline-flex;
  gap: var(--spacing-md);
}


@media (max-width: 1200px) {
  .hero-content h1 {
    font-size: 3.5rem;
  }
  
  .hero-image {
    height: 500px;
  }
}

@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: var(--spacing-xxl);
  }
  
  .hero-content {
    text-align: center;
    margin: 0 auto;
  }
  
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-image {
    height: 400px;
    order: -1;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content p {
    font-size: 1.2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .hero-image {
    height: 300px;
  }
}

/*About Section Styles*/


/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Playfair Display', serif;
  line-height: 1.6;
  color: #2b2b2b;
  background-color: #ffffff;
}

/* Section Styling */
.section {
  padding: 80px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

/* Decorative Background Element */
.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top left, rgba(212, 175, 55, 0.1), transparent 70%);
  z-index: 1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 3.2rem;
  font-weight: 700;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 3px;
  position: relative;
  padding-bottom: 15px;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, #d4af37, #b8972e);
  border-radius: 2px;
}

.section-header p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 20px auto 0;
  color: #4a4a4a;
  font-style: italic;
}

/* About Content */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-image {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.about-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.about-image:hover img {
  transform: scale(1.08);
}

.about-image:hover::after {
  opacity: 1;
}

.about-text {
  padding: 20px;
}

.about-text h3 {
  font-size: 2.2rem;
  color: #d4af37;
  margin-bottom: 20px;
  font-weight: 600;
  text-transform: capitalize;
}

.about-text p {
  font-size: 1.1rem;
  color: #4a4a4a;
  margin-bottom: 20px;
  line-height: 1.8;
}

/* Stats Container */
.stats-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 30px;
}

.stat-item {
  flex: 1;
  text-align: center;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.2), transparent 70%);
  transition: transform 0.5s ease;
}

.stat-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.stat-item:hover::before {
  transform: translate(25%, 25%);
}

.stat-number {
  display: block;
  font-size: 2.8rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #4a4a4a;
}

/* Fade-in Animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeIn 1s ease-out forwards;
}

.fade-in.delay-1 {
  animation-delay: 0.4s;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }

  .section-header h2 {
    font-size: 2.5rem;
  }

  .section-header p {
    font-size: 1.1rem;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-text h3 {
    font-size: 1.8rem;
  }

  .stats-container {
    flex-direction: column;
    align-items: center;
  }

  .stat-item {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 40px 0;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .section-header p {
    font-size: 1rem;
  }

  .about-text p {
    font-size: 1rem;
  }

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

  .stat-label {
    font-size: 0.9rem;
  }
}



/*Services Section Styles*/
/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Playfair Display', serif;
  line-height: 1.6;
  color: #2b2b2b;
  background-color: #ffffff;
}

/* Section Styling */
.section {
  padding: 80px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

/* Decorative Background Element */
.section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.1), transparent 70%);
  z-index: 1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 3.2rem;
  font-weight: 700;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 3px;
  position: relative;
  padding-bottom: 15px;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, #d4af37, #b8972e);
  border-radius: 2px;
}

.section-header p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 20px auto 0;
  color: #4a4a4a;
  font-style: italic;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 20px 0;
}

.service-card {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.2), transparent 70%);
  transition: transform 0.5s ease;
  z-index: 0;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  background: #fff;
}

.service-card:hover::before {
  transform: translate(25%, 25%);
}

.service-icon {
  font-size: 2.5rem;
  color: #d4af37;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.2);
}

.service-card h3 {
  font-size: 1.8rem;
  color: #1a1a1a;
  margin-bottom: 15px;
  font-weight: 600;
  text-transform: capitalize;
  position: relative;
  z-index: 1;
}

.service-card p {
  font-size: 1rem;
  color: #4a4a4a;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* Font Awesome Icons (Ensure Font Awesome is included) */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css');

/* Fade-in Animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeIn 1s ease-out forwards;
}

.fade-in.delay-1 {
  animation-delay: 0.3s;
}

.fade-in.delay-2 {
  animation-delay: 0.6s;
}

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

/* Responsive Design */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .section-header h2 {
    font-size: 2.5rem;
  }

  .section-header p {
    font-size: 1.1rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card {
    padding: 25px;
  }

  .service-card h3 {
    font-size: 1.6rem;
  }

  .service-icon {
    font-size: 2.2rem;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 40px 0;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .section-header p {
    font-size: 1rem;
  }

  .service-card p {
    font-size: 0.95rem;
  }

  .service-icon {
    font-size: 2rem;
  }
}



/* Properties Section Styles */

.properties-slider {
  display: flex;
  gap: var(--spacing-lg);
  overflow-x: auto;
  padding: var(--spacing-sm) 0 var(--spacing-lg);
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.properties-slider::-webkit-scrollbar {
  display: none;
}

.property-card {
  flex: 0 0 calc(33.333% - var(--spacing-lg));
  min-width: 320px;
  background-color: var(--light);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  scroll-snap-align: start;
}

.property-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.property-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.property-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.property-card:hover .property-image img {
  transform: scale(1.1);
}

.property-tag {
  position: absolute;
  top: var(--spacing-md);
  right: var(--spacing-md);
  background-color: var(--accent);
  color: var(--light);
  padding: 0.25rem 0.75rem;
  border-radius: var(--border-radius-sm);
  font-size: 0.8rem;
  font-weight: 500;
  z-index: 1;
}

.property-content {
  padding: var(--spacing-lg);
}

.property-content h3 {
  margin-bottom: var(--spacing-xs);
  font-size: 1.5rem;
}

.property-location {
  display: flex;
  align-items: center;
  margin-bottom: var(--spacing-md);
  color: var(--gray-600);
  font-size: 0.9rem;
}

.property-location i {
  margin-right: var(--spacing-xs);
  color: var(--primary);
}

.property-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
  margin: var(--spacing-md) 0;
}

.property-amenities span {
  font-size: 0.85rem;
  color: var(--gray-700);
  background-color: var(--gray-200);
  padding: 0.25rem 0.75rem;
  border-radius: var(--border-radius-sm);
}

.property-amenities span i {
  margin-right: var(--spacing-xs);
  color: var(--primary);
}

.properties-nav {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.properties-nav button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--light);
  color: var(--primary);
  box-shadow: var(--shadow);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.properties-nav button:hover {
  background-color: var(--primary);
  color: var(--light);
}