/* ==========================================================================
   Base Styles and Reset
   ========================================================================== */
:root {
  --primary-color: #C99453;
  --primary-dark: #A67C42;
  --secondary-color: #1F1F1F;
  --secondary-light: #2a2a2a;
  --text-color: #333;
  --text-light: #777;
  --light-color: #f9f9f9;
  --white: #ffffff;
  --black: #000000;
  --transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --box-shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.2);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', sans-serif;
  color: var(--text-color);
  line-height: 1.7;
  background-color: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.3;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 500;
  text-transform: capitalize;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
  font-family: 'Roboto', sans-serif;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: var(--box-shadow-hover);
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: var(--white);
}

.btn-secondary:hover {
  background-color: var(--secondary-light);
  transform: translateY(-3px);
  box-shadow: var(--box-shadow-hover);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--box-shadow-hover);
}

.btn-small {
  padding: 10px 20px;
  font-size: 14px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.section-subtitle {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.section-divider {
  width: 80px;
  height: 3px;
  background-color: var(--primary-color);
  margin: 0 auto 20px;
  position: relative;
}

.section-divider::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--primary-color);
  border: 2px solid var(--white);
}

.section-description {
  max-width: 700px;
  margin: 0 auto;
  color: var(--text-light);
}

/* ==========================================================================
   Preloader
   ========================================================================== */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--secondary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.preloader.fade-out {
  opacity: 0;
}

.loader {
  display: flex;
  gap: 10px;
}

.loader-square {
  width: 20px;
  height: 20px;
  background-color: var(--primary-color);
  animation: loaderAnimation 1.2s infinite ease-in-out;
}

.loader-square:nth-child(1) {
  animation-delay: 0s;
}

.loader-square:nth-child(2) {
  animation-delay: 0.2s;
}

.loader-square:nth-child(3) {
  animation-delay: 0.4s;
}

.loader-square:nth-child(4) {
  animation-delay: 0.6s;
}

@keyframes loaderAnimation {
  0%, 40%, 100% {
    transform: scaleY(0.6);
  }
  20% {
    transform: scaleY(1);
  }
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s ease;
  background-color: rgba(31, 31, 31, 0.9);
  backdrop-filter: blur(10px);
}

.header.scrolled {
  padding: 15px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  flex-direction: column;
}

.logo h1 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin: 0;
  line-height: 1;
}

.logo span {
  font-size: 0.7rem;
  color: var(--white);
  letter-spacing: 1px;
  margin-top: 3px;
}

.nav ul {
  display: flex;
  gap: 30px;
}

.nav ul li a {
  color: var(--white);
  font-weight: 400;
  position: relative;
  padding: 5px 0;
}

.nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.nav ul li a:hover::after,
.nav ul li a.active::after {
  width: 100%;
}

.nav ul li a:hover,
.nav ul li a.active {
  color: var(--primary-color);
}

.social-header {
  display: flex;
  gap: 15px;
}

.social-header a {
  color: var(--white);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-header a:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  transform: translateY(-3px);
}

.mobile-menu-toggle {
  display: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1001;
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--primary-dark);
  transform: translateY(-5px);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  height: 100vh;
  min-height: 700px;
  position: relative;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(31, 31, 31, 0.8) 0%, rgba(31, 31, 31, 0.6) 100%), 
              url('assets/images/hero-bg.jpg') center/cover no-repeat;
  color: var(--white);
  overflow: hidden;
}

.hero-overlay {
  /* REMOVE the background properties from here */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  /* Optional: Add a subtle texture or pattern if needed */
  /* background: url('assets/images/texture.png') repeat; */
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  /* Ensure particles don't make the section too dark */
  opacity: 100;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 50px;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--white);
  opacity: 0.8;
}

.hero-scroll span {
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.scroll-icon {
  width: 30px;
  height: 50px;
  border: 2px solid var(--white);
  border-radius: 15px;
  position: relative;
}

.scroll-icon::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background-color: var(--white);
  border-radius: 50%;
  animation: scrollAnimation 2s infinite;
}

@keyframes scrollAnimation {
  0% {
    opacity: 1;
    top: 8px;
  }
  100% {
    opacity: 0;
    top: 30px;
  }
}

/* ==========================================================================
   Stats Section
   ========================================================================== */
.stats {
  padding: 80px 0;
  background-color: var(--light-color);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.stat-card {
  background-color: var(--white);
  padding: 40px 20px;
  text-align: center;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

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

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
}

.stat-label {
  font-size: 1rem;
  color: var(--text-light);
  font-weight: 500;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about {
  padding: 100px 0;
  background-color: var(--white);
}

.about-content {
  display: flex;
  gap: 50px;
  align-items: center;
}

.about-image {
  position: relative;
  flex: 1;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--transition);
}

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

.about-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transform: rotate(5deg);
}

.about-badge span:first-child {
  font-size: 1.8rem;
  font-weight: 700;
  display: block;
  line-height: 1;
}

.about-badge span:last-child {
  font-size: 0.8rem;
  display: block;
  margin-top: 5px;
}

.about-text {
  flex: 1;
}

.about-text p {
  margin-bottom: 30px;
  color: var(--text-light);
}

.about-features {
  margin-bottom: 30px;
}

.feature-item {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(201, 148, 83, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.feature-content h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--secondary-color);
}

.feature-content p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.services {
  padding: 100px 0;
  background-color: var(--light-color);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: var(--white);
  padding: 40px 30px;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: var(--transition);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(201, 148, 83, 0.1) 0%, rgba(201, 148, 83, 0.05) 100%);
  z-index: -1;
  opacity: 0;
  transition: var(--transition);
}

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

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 80px;
  height: 80px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 1.8rem;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background-color: var(--white);
  color: var(--primary-color);
  box-shadow: 0 0 0 10px rgba(201, 148, 83, 0.2);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.service-card p {
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  color: var(--primary-color);
  font-weight: 500;
  transition: var(--transition);
}

.service-link i {
  margin-left: 5px;
  transition: var(--transition);
}

.service-link:hover {
  color: var(--primary-dark);
}

.service-link:hover i {
  transform: translateX(5px);
}

.service-hover-effect {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: radial-gradient(circle at center, rgba(201, 148, 83, 0.2) 0%, rgba(201, 148, 83, 0) 70%);
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}

.service-card:hover .service-hover-effect {
  opacity: 1;
}

/* ==========================================================================
   Properties Section
   ========================================================================== */
.properties {
  padding: 100px 0;
  background-color: var(--white);
}

.properties-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 10px 25px;
  background-color: transparent;
  border: 1px solid #ddd;
  border-radius: 50px;
  color: var(--text-light);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}

.properties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.property-card {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

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

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

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

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

.property-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  z-index: 2;
}

.property-actions {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  gap: 10px;
  z-index: 2;
}

.action-btn {
  width: 35px;
  height: 35px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(10px);
}

.property-card:hover .action-btn {
  opacity: 1;
  transform: translateY(0);
}

.action-btn:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.property-info {
  padding: 20px;
}

.property-info h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--secondary-color);
}

.property-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 0.9rem;
  color: var(--text-light);
}

.property-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.property-meta i {
  color: var(--primary-color);
}

.property-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

.property-price span {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-color);
}

.properties-cta {
  margin-top: 50px;
  text-align: center;
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.testimonials {
  padding: 100px 0;
  background-color: var(--light-color);
}

.testimonials-slider {
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-slide {
  padding: 0 15px;
}

.testimonial-content {
  background-color: var(--white);
  padding: 40px;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  position: relative;
}

.testimonial-quote {
  position: relative;
  margin-bottom: 30px;
}

.testimonial-quote i {
  font-size: 2.5rem;
  color: rgba(201, 148, 83, 0.2);
  position: absolute;
  top: -15px;
  left: -10px;
}

.testimonial-quote p {
  font-size: 1.1rem;
  color: var(--text-color);
  font-style: italic;
  position: relative;
  z-index: 1;
  padding-left: 30px;
}

.testimonial-rating {
  color: var(--primary-color);
  margin-top: 15px;
  padding-left: 30px;
}

.testimonial-rating i {
  font-size: 1rem;
  margin-right: 3px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-left: 30px;
}

.testimonial-author img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-color);
}

.author-info h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: var(--secondary-color);
}

.author-info span {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Slick slider styles */
.slick-dots {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  list-style: none;
}

.slick-dots li {
  margin: 0 5px;
}

.slick-dots li button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd;
  border: none;
  font-size: 0;
  cursor: pointer;
  transition: var(--transition);
}

.slick-dots li.slick-active button {
  background-color: var(--primary-color);
}

/* ==========================================================================
   Partners Section
   ========================================================================== */
.partners {
  padding: 60px 0;
  background-color: var(--white);
}

.partners-slider {
  max-width: 1000px;
  margin: 0 auto;
}

.partner-logo {
  padding: 0 30px;
  text-align: center;
  opacity: 0.6;
  transition: var(--transition);
}

.partner-logo:hover {
  opacity: 1;
}

.partner-logo img {
  width: auto;
  height: 60px;
  margin: 0 auto;
  filter: grayscale(100%);
  transition: var(--transition);
}

.partner-logo:hover img {
  filter: grayscale(0%);
}

/* ==========================================================================
   CEO Section
   ========================================================================== */
/* CEO Section */
.ceo {
  padding: 100px 0;
  background-color: var(--light-color);
}

.ceo-content {
  display: flex;
  gap: 50px;
  align-items: center;
}

.ceo-image-container {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
}

.ceo-image-container img {
  width: 350px;
  height: 350px;
  object-fit: cover;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%; /* Creates oval shape */
  border: 8px solid var(--primary-color);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.ceo-image-container:hover img {
  transform: scale(1.03);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.ceo-signature {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background-color: var(--white);
  padding: 15px;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transform: rotate(-5deg);
}

.ceo-signature img {
  width: 150px;
  height: auto;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.ceo-message {
  flex: 1;
}

.ceo-message h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.ceo-message p {
  margin-bottom: 20px;
  color: var(--text-light);
}

.ceo-message p:last-of-type {
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0;
}

.ceo-social {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.ceo-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.ceo-social a:hover {
  background-color: var(--secondary-color);
  transform: translateY(-5px);
}

/* Responsive Styles */
@media (max-width: 991px) {
  .ceo-content {
    flex-direction: column;
  }
  
  .ceo-image-container {
    margin-bottom: 40px;
  }
  
  .ceo-image-container img {
    width: 280px;
    height: 280px;
  }
}

@media (max-width: 575px) {
  .ceo-image-container img {
    width: 220px;
    height: 220px;
  }
  
  .ceo-signature {
    bottom: 10px;
    right: 10px;
  }
  
  .ceo-signature img {
    width: 120px;
  }
}
/* ==========================================================================
   CTA Section
   ========================================================================== */
.cta {
  padding: 100px 0;
  position: relative;
  background: url('assets/images/cta-bg.jpg') center/cover no-repeat;
  color: var(--white);
  text-align: center;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(31, 31, 31, 0.9) 0%, rgba(31, 31, 31, 0.8) 100%);
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.cta h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

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

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact {
  padding: 100px 0;
  background-color: var(--white);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-item {
  display: flex;
  gap: 20px;
}

.info-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(201, 148, 83, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.info-content h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--secondary-color);
}

.info-content p,
.info-content a {
  color: var(--text-light);
  font-size: 0.95rem;
  transition: var(--transition);
}

.info-content a:hover {
  color: var(--primary-color);
}

.contact-social {
  margin-top: 20px;
}

.contact-social h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(201, 148, 83, 0.1);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-5px);
}

.contact-form-container {
  position: relative;
}

.contact-form {
  background-color: var(--light-color);
  padding: 40px;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
}

.form-group {
  position: relative;
  margin-bottom: 25px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  transition: var(--transition);
  background-color: var(--white);
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 40px;
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.form-group label {
  position: absolute;
  top: 15px;
  left: 15px;
  color: var(--text-light);
  pointer-events: none;
  transition: var(--transition);
  background-color: var(--white);
  padding: 0 5px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(201, 148, 83, 0.2);
}

.form-group input:focus + label,
.form-group select:focus + label,
.form-group textarea:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group select:not([value=""]) + label,
.form-group textarea:not(:placeholder-shown) + label {
  top: -10px;
  left: 10px;
  font-size: 0.8rem;
  color: var(--primary-color);
  background-color: var(--light-color);
}

.form-group select + label {
  z-index: -1;
}

.form-group::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  color: var(--text-light);
  pointer-events: none;
}

.form-group:not(.has-select)::after {
  display: none;
}

.btn-icon {
  margin-left: 10px;
}

.form-success {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--light-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 2;
}

.form-success.active {
  opacity: 1;
  visibility: visible;
}

.form-success i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.form-success h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.form-success p {
  color: var(--text-light);
  max-width: 400px;
  margin: 0 auto;
}

.contact-map {
  grid-column: 1 / -1;
  margin-top: 30px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.contact-map iframe {
  width: 100%;
  height: 450px;
  border: none;
}

/* ==========================================================================
   Newsletter Section
   ========================================================================== */
.newsletter {
  padding: 80px 0;
  background-color: var(--secondary-color);
  color: var(--white);
}

.newsletter-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.newsletter-text h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.newsletter-text p {
  opacity: 0.8;
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  width: 100%;
}

.newsletter-form input {
  flex: 1;
  padding: 15px 20px;
  border: none;
  border-radius: 50px 0 0 50px;
  font-size: 1rem;
  outline: none;
}

.newsletter-form button {
  border-radius: 0 50px 50px 0;
  padding: 15px 30px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.footer-col h3 {
  font-size: 1.3rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer-about .footer-logo {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.footer-about .footer-logo h3 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin: 0;
  line-height: 1;
  padding-bottom: 0;
}

.footer-about .footer-logo h3::after {
  display: none;
}

.footer-about .footer-logo span {
  font-size: 0.7rem;
  letter-spacing: 1px;
  margin-top: 3px;
}

.footer-about p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  transform: translateY(-5px);
}

.footer-links ul li {
  margin-bottom: 12px;
}

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  transition: var(--transition);
  display: inline-block;
}

.footer-links ul li a:hover {
  color: var(--primary-color);
  transform: translateX(5px);
}

.footer-contact ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.footer-contact ul li i {
  color: var(--primary-color);
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  padding-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-copyright p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-legal a:hover {
  color: var(--primary-color);
}

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-on-scroll {
  opacity: 0;
}

.animate-on-scroll.animated {
  animation-fill-mode: both;
}

.fadeIn {
  animation-name: fadeIn;
  animation-duration: 1s;
}

.fadeInUp {
  animation-name: fadeInUp;
  animation-duration: 1s;
}

.fadeInDown {
  animation-name: fadeInDown;
  animation-duration: 1s;
}

.fadeInLeft {
  animation-name: fadeInLeft;
  animation-duration: 1s;
}

.fadeInRight {
  animation-name: fadeInRight;
  animation-duration: 1s;
}

/* Delay classes */
.delay-02s {
  animation-delay: 0.2s;
}

.delay-04s {
  animation-delay: 0.4s;
}

.delay-06s {
  animation-delay: 0.6s;
}

.delay-08s {
  animation-delay: 0.8s;
}

.delay-1s {
  animation-delay: 1s;
}

/* ==========================================================================
   Responsive Styles
   ========================================================================== */
@media (max-width: 1199px) {
  .hero h1 {
    font-size: 3rem;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 991px) {
  .header .container {
    padding: 0 15px;
  }
  
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--secondary-color);
    padding: 80px 30px 30px;
    transition: var(--transition);
    z-index: 1000;
    overflow-y: auto;
  }
  
  .nav.active {
    right: 0;
  }
  
  .nav ul {
    flex-direction: column;
    gap: 20px;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .social-header {
    display: none;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .about-content {
    flex-direction: column;
  }
  
  .ceo-content {
    flex-direction: column;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

@media (max-width: 767px) {
  .section-title {
    font-size: 2rem;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .properties-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .newsletter-content {
    flex-direction: column;
    text-align: center;
  }
  
  .newsletter-form {
    max-width: 100%;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-legal {
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .hero {
    min-height: 600px;
  }
  
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonial-content {
    padding: 30px 20px;
  }
  
  .testimonial-author {
    flex-direction: column;
    text-align: center;
  }
  
  .contact-form {
    padding: 30px 20px;
  }
}
