/* ==================== GLOBAL STYLES ==================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #d4a574;
  --secondary-color: #1a1a2e;
  --accent-color: #16213e;
  --light-color: #f8f9fa;
  --dark-color: #0f3460;
  --text-color: #333;
  --border-color: #ddd;
  --success-color: #27ae60;
  --warning-color: #f39c12;
  --danger-color: #e74c3c;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==================== HEADER & NAVIGATION ==================== */
.header {
  background: transparent;
  padding: 20px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.header.scrolled {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--dark-color) 100%);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo-section {
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 700;
  color: #fff;
  font-size: 24px;
}

.logo-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-color);
  padding: 5px;
}

.brand-name {
  background: linear-gradient(135deg, var(--primary-color), #e8c9a0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 26px;
  font-weight: 700;
}

.nav {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-link {
  color: #fff;
  text-decoration: none;
  position: relative;
  transition: 0.3s;
  font-weight: 500;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s;
}

.nav-link:hover::after {
  width: 100%;
}

/* Dropdown Menu */
.nav-dropdown {
  position: relative;
}

.dropdown-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--secondary-color);
  border-radius: 8px;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s;
  margin-top: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 12px 20px;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
  border-left: 3px solid transparent;
}

.dropdown-item:hover {
  background: var(--dark-color);
  border-left-color: var(--primary-color);
  padding-left: 25px;
}

.dropdown-item i {
  margin-right: 10px;
  color: var(--primary-color);
}

.nav-actions {
  display: flex;
  gap: 15px;
  align-items: center;
}

.btn-call-enquiry {
  background: var(--primary-color);
  color: var(--dark-color);
  padding: 10px 20px;
  border-radius: 25px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-call-enquiry:hover {
  background: #e8c9a0;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 165, 116, 0.3);
}

.hamburger {
  display: none;
  margin-left: auto;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
}

/* ==================== BUTTONS ==================== */
.btn {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), #e8c9a0);
  color: var(--dark-color);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(212, 165, 116, 0.3);
}

.btn-secondary {
  background: var(--secondary-color);
  color: #fff;
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background: var(--dark-color);
  box-shadow: 0 8px 20px rgba(212, 165, 116, 0.3);
}

.btn-white {
  background: #fff;
  color: var(--dark-color);
}

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

.btn-small {
  padding: 8px 16px;
  font-size: 14px;
}

.btn-lg {
  padding: 15px 30px;
  font-size: 16px;
}

.btn-hover-glow:hover {
  box-shadow: 0 0 20px rgba(212, 165, 116, 0.5);
}

.btn-full-width {
  width: 100%;
}

.btn:disabled,
.btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ==================== HERO SECTION ==================== */
.hero {
  background: var(--dark-color);
  padding: 0;
  min-height: 100vh;
}

.hero-carousel {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover !important;
  background-position: center !important;
}

.hero-slide.active {
  opacity: 1;
}

.hero-content {
  color: #fff;
  text-align: center;
  z-index: 2;
  animation: slideInUp 0.8s ease-out;
}

.hero-text {
  margin-bottom: 40px;
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
}

.animate-title {
  animation: titlePulse 3s ease-in-out infinite;
}

.hero-subtitle {
  font-size: 20px;
  color: #ddd;
  margin-bottom: 30px;
}

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

.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(212, 165, 116, 0.8);
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 24px;
  border-radius: 50%;
  z-index: 10;
  transition: all 0.3s;
}

.carousel-control:hover {
  background: var(--primary-color);
  transform: translateY(-50%) scale(1.1);
}

.carousel-control.prev {
  left: 20px;
}

.carousel-control.next {
  right: 20px;
}

.carousel-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s;
}

.indicator.active {
  background: var(--primary-color);
  width: 30px;
  border-radius: 6px;
}

/* SEO Banner */
.hero-seo-banner {
  background: #f8f9fa;
  padding: 60px 0;
}

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

.seo-item {
  text-align: center;
  padding: 30px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}

.seo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.seo-icon {
  font-size: 40px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.seo-item h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--dark-color);
}

/* ==================== ABOUT SECTION ==================== */
.about-section {
  padding: 80px 0;
  background: #fff;
}

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

.section-header h2 {
  font-size: 42px;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 10px;
}

.section-header p {
  font-size: 18px;
  color: var(--primary-color);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-text h3 {
  font-size: 32px;
  color: var(--dark-color);
  margin-bottom: 20px;
}

.about-text p {
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.8;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 30px 0;
}

.feature-item {
  padding: 20px;
  background: #f8f9fa;
  border-radius: 10px;
  border-left: 4px solid var(--primary-color);
}

.feature-item i {
  font-size: 24px;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.feature-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.feature-item p {
  font-size: 14px;
  color: #999;
}

.about-image {
  position: relative;
}

.about-img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.about-image-overlay {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--primary-color);
  padding: 20px;
  border-radius: 10px;
  color: var(--dark-color);
  max-width: 200px;
}

.about-image-overlay h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

/* ==================== PROPERTIES SECTION ==================== */
.properties-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.filters-bar {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 20px;
  border: 2px solid var(--border-color);
  background: #fff;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 600;
}

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

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

.property-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  cursor: pointer;
}

.property-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

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

.property-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

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

.property-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 12px;
  z-index: 5;
}

.property-badge.premium {
  background: var(--primary-color);
  color: var(--dark-color);
}

.property-badge.modern {
  background: #3498db;
  color: #fff;
}

.property-badge.luxury {
  background: #e74c3c;
  color: #fff;
}

.property-badge.new {
  background: #27ae60;
  color: #fff;
}

.property-badge.popular,
.property-badge.green {
  background: #f39c12;
  color: #fff;
}

.property-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.property-card:hover .property-overlay {
  opacity: 1;
}

.property-info {
  padding: 20px;
}

.property-info h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 10px;
}

.location {
  font-size: 14px;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.property-specs {
  display: flex;
  gap: 15px;
  font-size: 14px;
  color: #666;
  margin: 10px 0;
}

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

.price {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-color);
  margin: 10px 0;
}

.property-actions {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.property-actions .btn {
  flex: 1;
  text-align: center;
}

/* ==================== RESORTS SECTION ==================== */
.resorts-section {
  padding: 80px 0;
  background: #fff;
}

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

.resort-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  cursor: pointer;
}

.resort-card.coming-soon {
  filter: grayscale(0.3);
}

.resort-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

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

.resort-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

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

.resort-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  opacity: 0;
  transition: opacity 0.3s;
}

.resort-card:hover .resort-overlay {
  opacity: 1;
}

.resort-rating {
  background: var(--primary-color);
  color: var(--dark-color);
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
}

.resort-info {
  padding: 20px;
}

.resort-info h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 10px;
}

.resort-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: #666;
  margin: 15px 0;
}

.resort-features span {
  background: #f0f0f0;
  padding: 6px 12px;
  border-radius: 15px;
}

.resort-info p.description {
  font-size: 14px;
  color: #666;
  margin: 10px 0;
}

.resort-actions {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.resort-actions .btn {
  flex: 1;
  text-align: center;
}

.coming-soon-banner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}

.badge-soon {
  background: var(--primary-color);
  color: var(--dark-color);
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 12px;
  margin-bottom: 10px;
}

/* ==================== LANDS SECTION ==================== */
.lands-section {
  padding: 80px 0;
  background: #f8f9fa;
}

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

/* ==================== TOURISM SECTION ==================== */
.tourism-section {
  padding: 80px 0;
  background: #fff;
}

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

.tourism-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  position: relative;
}

.tourism-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

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

.tourism-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

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

.coming-soon-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-soon {
  background: var(--primary-color);
  color: var(--dark-color);
  padding: 10px 22px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.tourism-info {
  padding: 20px;
}

.tourism-info h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 10px;
}

.tourism-info p {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
  line-height: 1.5;
}

.tourism-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: #666;
}

.tourism-features span {
  background: #f0f0f0;
  padding: 6px 12px;
  border-radius: 15px;
}

.land-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.land-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

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

.land-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

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

.land-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 12px;
  color: #fff;
}

.land-badge.commercial {
  background: #e74c3c;
}

.land-badge.residential {
  background: #3498db;
}

.land-badge.investment {
  background: #27ae60;
}

.land-info {
  padding: 20px;
}

.land-info h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 10px;
}

.land-specs {
  display: flex;
  gap: 15px;
  font-size: 14px;
  color: #666;
  margin: 15px 0;
}

.land-specs span {
  display: flex;
  gap: 5px;
  align-items: center;
}

.land-actions {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

/* ==================== HIDDEN & FEATURED CARDS ==================== */
.hidden {
  display: none !important;
}

.featured-card {
  border: 2px solid var(--primary-color);
  position: relative;
  overflow: visible;
}

.featured-card::before {
  content: 'Featured';
  position: absolute;
  top: -12px;
  left: 20px;
  background: var(--primary-color);
  color: var(--dark-color);
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* ==================== REVIEWS SECTION ==================== */
.reviews-section {
  padding: 80px 0;
  background: #fff;
}

.reviews-carousel {
  position: relative;
}

.reviews-track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  overflow-x: auto;
  padding: 20px 0;
}

.review-card {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.review-header {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.reviewer-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary-color);
  color: var(--dark-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}

.reviewer-info h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark-color);
}

.review-type {
  font-size: 12px;
  color: #999;
  margin-bottom: 8px;
}

.stars {
  color: #f39c12;
  font-size: 12px;
}

.review-text {
  color: #666;
  font-size: 14px;
  margin: 15px 0;
  line-height: 1.6;
}

.review-date {
  font-size: 12px;
  color: #999;
}

.review-prev,
.review-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.review-prev {
  left: -50px;
}

.review-next {
  right: -50px;
}

/* ==================== BLOGS SECTION ==================== */
.blogs-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.blogs-carousel {
  position: relative;
}

.blogs-track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  overflow-x: auto;
}

.blog-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  cursor: pointer;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.blog-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

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

.blog-date {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--primary-color);
  color: var(--dark-color);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.blog-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.blog-card:hover .blog-overlay {
  opacity: 1;
}

.blog-content {
  padding: 20px;
}

.blog-content h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-content p {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

.blog-meta {
  display: flex;
  gap: 15px;
  font-size: 12px;
  color: #999;
  flex-wrap: wrap;
}

.blog-prev,
.blog-next {
  position: absolute;
  top: 150px;
}

.blog-prev {
  left: -50px;
}

.blog-next {
  right: -50px;
}

/* ==================== CONTACT SECTION ==================== */
.contact-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--secondary-color), var(--dark-color));
  color: #fff;
}

.contact-section .section-header h2,
.contact-section .section-header p {
  color: #fff;
}

.contact-section .section-header p {
  color: var(--primary-color);
}

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

.contact-form-box,
.contact-info-box {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

.contact-form-box h3,
.contact-info-box h3 {
  font-size: 22px;
  margin-bottom: 25px;
  color: #fff;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #fff;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-family: inherit;
  transition: 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
  background: rgba(255, 255, 255, 0.15);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.form-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}

.office-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
  border-left: 4px solid var(--primary-color);
  margin-bottom: 20px;
}

.office-badge {
  display: inline-block;
  background: var(--primary-color);
  color: var(--dark-color);
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 10px;
}

.office-card h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #fff;
}

.office-detail {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 14px;
}

.office-detail i {
  color: var(--primary-color);
  min-width: 20px;
}

.office-card p {
  margin: 3px 0;
  color: rgba(255, 255, 255, 0.9);
}

.maps-section {
  margin-top: 60px;
}

.maps-section h3 {
  text-align: center;
  color: #fff;
  margin-bottom: 40px;
  font-size: 28px;
}

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

.map-box {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.map-box h4 {
  background: var(--primary-color);
  color: var(--dark-color);
  padding: 15px;
  font-size: 16px;
  font-weight: 600;
}

.map-box iframe {
  display: block;
}

/* ==================== FOOTER ==================== */
.footer {
  background: var(--secondary-color);
  color: #fff;
  padding: 60px 0 20px;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.footer-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-color);
  padding: 5px;
}

.footer-logo h3 {
  font-size: 20px;
  color: var(--primary-color);
}

.footer-section p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 15px;
  line-height: 1.6;
}

.footer-section h4 {
  font-size: 16px;
  margin-bottom: 15px;
  color: #fff;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: 0.3s;
}

.footer-section ul li a:hover {
  color: var(--primary-color);
}

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

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s;
  text-decoration: none;
}

.social-icon:hover {
  background: var(--primary-color);
  color: var(--dark-color);
  transform: scale(1.1);
}

.social-icon.whatsapp:hover {
  background: #25d366;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.newsletter-form h5 {
  font-size: 14px;
  margin-bottom: 10px;
}

.newsletter-form form {
  display: flex;
  gap: 5px;
}

.newsletter-form input {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.9);
}

.newsletter-form input::placeholder {
  color: #999;
}

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

.footer-credits p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links {
  display: flex;
  gap: 20px;
  font-size: 14px;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: 0.3s;
}

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

/* ==================== MODAL STYLES ==================== */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  animation: fadeIn 0.3s;
}

.modal.active {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow-y: auto;
  padding: 40px 20px;
}

.modal-content {
  background: #1eceec;
  border-radius: 15px;
  width: 90%;
  max-width: 500px;
  padding: 40px;
  position: relative;
  animation: slideUp 0.3s;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-header {
  text-align: center;
  margin-bottom: 30px;
}

.modal-header h2 {
  font-size: 28px;
  color: var(--dark-color);
  margin-bottom: 10px;
}

.modal-header p {
  color: var(--primary-color);
  font-size: 14px;
}

.close-modal {
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 28px;
  font-weight: bold;
  color: #999;
  cursor: pointer;
  background: none;
  border: none;
  transition: 0.3s;
}

.close-modal:hover {
  color: #333;
}

/* ==================== WHATSAPP FLOAT ==================== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  font-size: 32px;
  color: #fff;
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
  animation: float 3s ease-in-out infinite;
  transition: all 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  filter: brightness(1.1);
}

/* ==================== ANIMATIONS ==================== */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes titlePulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 1024px) {
  .about-content,
  .contact-content {
    grid-template-columns: 1fr;
  }

  .nav {
    gap: 15px;
  }

  .hero-title {
    font-size: 36px;
  }

  .maps-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
    /* margin-left: auto; */
  }

  .nav {
    display: none;
  }

  .logo-section {
    flex: 1;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .section-header h2 {
    font-size: 32px;
  }

  .properties-grid,
  .resorts-grid,
  .lands-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .carousel-control {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .carousel-control.prev {
    left: 10px;
  }

  .carousel-control.next {
    right: 10px;
  }

  .review-prev,
  .review-next,
  .blog-prev,
  .blog-next {
    display: none;
  }

  .contact-form-box,
  .contact-info-box {
    padding: 20px;
  }

  .modal-content {
    width: 95%;
    padding: 25px;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .nav-actions .btn-call-enquiry {
    display: none;
  }

  .hero-title {
    font-size: 22px;
  }

  .section-header h2 {
    font-size: 24px;
  }

  .properties-grid,
  .resorts-grid,
  .lands-grid {
    grid-template-columns: 1fr;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
  }

  .modal-content {
    padding: 20px;
  }

  .modal-header h2 {
    font-size: 22px;
  }

  .carousel-indicators {
    gap: 6px;
  }

  .indicator {
    width: 10px;
    height: 10px;
  }

  .indicator.active {
    width: 25px;
  }
}

/* ==================== DETAIL MODAL ==================== */
.detail-modal-content {
  max-width: 900px;
  width: 95%;
  background: #fff;
  padding: 0;
  overflow-y: auto;
  max-height: 85vh;
}

.detail-modal-content .close-modal {
  top: 10px;
  right: 15px;
  color: #fff;
  z-index: 10;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.detail-hero {
  position: relative;
  height: 300px;
  overflow: hidden;
}

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

.detail-hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  padding: 30px;
  color: #fff;
}

.detail-hero-overlay h2 {
  font-size: 28px;
  margin-bottom: 5px;
}

.detail-hero-overlay p {
  color: var(--primary-color);
  font-size: 16px;
}

.detail-body {
  padding: 30px;
}

.detail-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 10px;
  margin-bottom: 20px;
}

.detail-gallery img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s;
}

.detail-gallery img:hover {
  transform: scale(1.05);
}

.detail-video {
  width: 100%;
  max-height: 400px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.detail-specs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin: 20px 0;
}

.detail-spec-item {
  background: #f8f9fa;
  padding: 15px;
  border-radius: 10px;
  border-left: 3px solid var(--primary-color);
}

.detail-spec-item i {
  color: var(--primary-color);
  margin-right: 8px;
}

.detail-actions {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.detail-actions .btn {
  flex: 1;
  justify-content: center;
}

/* Print Styles */
@media print {
  .header,
  .footer,
  .whatsapp-float,
  .carousel-control,
  .nav,
  .btn {
    display: none;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Logo and favicon styles */
.logo-img {
  height: 40px;
  width: auto;
  border-radius: 5px;
}

/* Mobile responsive navigation */
.nav.show {
  display: flex !important;
  flex-direction: column;
  width: 80%;
  margin-left: auto;
  margin-right: 0;
  background: rgba(255, 255, 255, 0.95);
  position: absolute;
  /* top: 100%; */
  right: 0;
  padding: 1rem 0;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Document section specific styles */
.documents {
  padding: 80px 0;
  background: #f8f9fa;
}

.documents .container {
  max-width: 1000px;
}

.documents h2 {
  text-align: center;
  margin-bottom: 1rem;
  color: #333;
}

.section-description {
  text-align: center;
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.documents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.document-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e9ecef;
}

.document-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.document-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.document-info h3 {
  color: #333;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.document-info p {
  color: #666;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.document-details {
  margin: 1rem 0;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: #555;
  font-size: 0.9rem;
}

.detail-item i {
  color: #667eea;
  width: 16px;
}

.document-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 1rem 0;
  padding-top: 1rem;
  border-top: 1px solid #eee;
  font-size: 0.85rem;
  color: #888;
}

.documents-contact {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  border: 1px solid #e9ecef;
}

.documents-contact h3 {
  color: #333;
  margin-bottom: 1rem;
}

.documents-contact p {
  color: #666;
  margin-bottom: 1.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Mobile responsive design */
@media (max-width: 768px) {
  .header .container {
    flex-direction: column;
    padding: 1rem;
  }

  .logo {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }

  .logo-img {
    height: 35px;
  }

  .nav {
    display: none;
    margin-left: auto;
    flex-direction: column;
    width: 100%;
    background: rgba(255,255,255,0.95);
    position: absolute;
    top: 100%;
    left: 0;
    padding: 1rem 0;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }

  .nav.show {
    display: flex;
  }

  .nav-link {
    color: #333 !important;
    padding: 0.5rem 1rem;
    border-bottom: 1px solid #eee;
  }

  .nav-link:last-child {
    border-bottom: none;
  }

  .hamburger {
    display: flex;
    /* margin-left: auto; */
  }

  /* .hero {
    margin-top: 100px;
  } */

  .hero-carousel {
    height: 400px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1.1rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .btn {
    width: 100%;
    padding: 0.8rem 1rem;
  }

  .about-features {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .property-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .documents-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .document-card {
    padding: 1.5rem;
  }

  .document-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .blogs-grid {
    grid-template-columns: 1fr;
  }

  .contact-content {
    flex-direction: column;
  }

  .contact-form {
    margin-top: 2rem;
  }

  .maps-container {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
    gap: 2rem;
  }

  .modal-content {
    width: 95%;
    margin: 5% auto;
  }

  .modal-content.large-modal {
    width: 98%;
    height: 90vh;
  }

  .modal-body {
    flex-direction: column;
    height: auto;
  }

  .modal-gallery {
    width: 100%;
    height: 250px;
  }

  .modal-details {
    width: 100%;
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  .hamburger {
    display: flex;
    margin-left: auto;
  }
  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .section h2 {
    font-size: 1.8rem;
  }

  .property-card,
  .review-card,
  .blog-card,
  .document-card {
    margin-bottom: 1.5rem;
  }

  .btn {
    font-size: 0.9rem;
    padding: 0.7rem 1rem;
  }

  .contact-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .document-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .detail-item {
    font-size: 0.8rem;
  }
}