/* ===== GENERAL STYLES ===== */
:root {
  --primary-color: #c9a55c;
  --secondary-color: #1a1a2e;
  --accent-color: #d4af37;
  --text-color: #333;
  --light-text: #f8f9fa;
  --dark-bg: #0f0f1a;
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  --transition: all 0.3s ease;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-color);
  background-color: #f8f9fa;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
}

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

.btn {
  border-radius: 0;
  padding: 12px 28px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
}

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

.btn-primary:hover, .btn-primary:focus {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.btn-outline-light {
  border-color: var(--light-text);
  color: var(--light-text);
}

.btn-outline-light:hover {
  background-color: var(--light-text);
  color: var(--secondary-color);
}

.section-title {
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title h2:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--primary-color);
}

/* ===== PRELOADER ===== */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--dark-bg);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader {
  width: 50px;
  height: 50px;
  border: 5px solid var(--glass-border);
  border-top: 5px solid var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ===== GLASS UI ELEMENTS ===== */
.glass-nav {
  background: rgba(15, 15, 26, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--glass-border);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  padding: 15px 0;
  transition: var(--transition);
}

.glass-nav.scrolled {
  padding: 10px 0;
  background: rgba(15, 15, 26, 0.95);
}

.glass-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: 10px;
  padding: 30px;
  transition: var(--transition);
  overflow: hidden;
  position: relative;
}

.glass-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
}

.glass-card:hover::before {
  left: 100%;
}

/* ===== HEADER & NAVBAR ===== */
.navbar-brand h1 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0;
}

.navbar-nav .nav-link {
  color: var(--light-text);
  font-weight: 500;
  padding: 10px 15px;
  position: relative;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 70%;
}

/* ===== HERO SECTION ===== */
.hero-section {
  background: linear-gradient(rgba(15, 15, 26, 0.8), rgba(15, 15, 26, 0.8)), url('https://thelanddevelopers.com/assets_NewPublic/images/NewImags/bgbnnerwhatwedo.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 80px;
  overflow: hidden;
}

.hero-section h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease;
}

.hero-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease 0.3s;
  animation-fill-mode: both;
}

.hero-section .btn {
  animation: fadeInUp 1s ease 0.6s;
  animation-fill-mode: both;
}

.hero-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to top, #f8f9fa, transparent);
}

/* ===== FEATURES SECTION ===== */
.features-section {
  padding: 100px 0;
  position: relative;
}

.feature-card {
  text-align: center;
  padding: 40px 30px;
  height: 100%;
}

.feature-icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--light-text);
  font-size: 2rem;
  margin: 0 auto 20px;
  position: relative;
  overflow: hidden;
}

.feature-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: 0.5s;
}

.feature-card:hover .feature-icon::before {
  left: 100%;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  padding: 100px 0;
  background-color: #f8f9fa;
}

/* ===== PROJECTS SECTION ===== */
.projects-section {
  padding: 100px 0;
}

.project-card {
  margin-bottom: 30px;
  overflow: hidden;
}

.project-card img {
  transition: var(--transition);
}

.project-card:hover img {
  transform: scale(1.05);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
  padding: 100px 0;
  background-color: #f8f9fa;
}

.testimonial-card {
  text-align: center;
  padding: 40px 30px;
}

.testimonial-rating {
  color: var(--primary-color);
  margin-bottom: 20px;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author h5 {
  margin-bottom: 5px;
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(rgba(15, 15, 26, 0.8), rgba(15, 15, 26, 0.8)), url('../images/cta-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.cta-card {
  background: rgba(15, 15, 26, 0.7);
  color: var(--light-text);
  padding: 60px 40px;
}

/* ===== PAGE HEADER ===== */
.page-header {
  background: linear-gradient(rgba(15, 15, 26, 0.8), rgba(15, 15, 26, 0.8)), url('../images/page-header-bg.jpg');
  background-size: cover;
  background-position: center;
  padding: 150px 0 100px;
  position: relative;
  color: var(--light-text);
}

.page-header h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.breadcrumb {
  background: transparent;
  padding: 0;
}

.breadcrumb-item a {
  color: var(--primary-color);
}

.breadcrumb-item.active {
  color: var(--light-text);
}

.page-header-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: linear-gradient(to top, #f8f9fa, transparent);
}

/* ===== CONTACT SECTION ===== */
.contact-info-section {
  padding: 100px 0 50px;
}

.contact-info-card {
  padding: 40px 30px;
}

.contact-icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--light-text);
  font-size: 2rem;
  margin: 0 auto 20px;
}

.contact-form-section {
  padding: 50px 0 100px;
}

.contact-form .form-control {
  border-radius: 0;
  padding: 15px;
}

/* ===== FOOTER ===== */
.footer-section {
  background: var(--dark-bg);
  color: var(--light-text);
  padding: 80px 0 20px;
}

.footer-section h3 {
  color: var(--primary-color);
  margin-bottom: 20px;
}

.footer-section h4 {
  margin-bottom: 20px;
}

.contact-info p {
  margin-bottom: 10px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

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

.footer-links a {
  color: var(--light-text);
}

.footer-links a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

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

.social-links a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--light-text);
  transition: var(--transition);
}

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

.footer-divider {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 30px 0;
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background-color: var(--primary-color);
  color: var(--light-text);
  border-radius: 50%;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

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

.back-to-top:hover {
  background-color: var(--accent-color);
  color: var(--light-text);
}

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

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

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

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

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 991px) {
  .hero-section {
    height: auto;
    padding: 150px 0 100px;
  }
  
  .hero-section h1 {
    font-size: 3rem;
  }
  
  .navbar-collapse {
    background-color: rgba(15, 15, 26, 0.95);
    padding: 20px;
    border-radius: 10px;
    margin-top: 15px;
  }
}

@media (max-width: 767px) {
  .hero-section h1 {
    font-size: 2.5rem;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  .glass-card {
    padding: 20px;
  }
}

/* ===== ADDITIONAL LUXURY ELEMENTS ===== */
.luxury-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--primary-color), transparent);
  margin: 40px 0;
}

.luxury-badge {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--light-text);
  padding: 5px 15px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 30px;
  margin-bottom: 15px;
}

.stats-counter {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.stats-text {
  font-size: 1.1rem;
  color: var(--text-color);
}

.service-features {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.service-features li {
  margin-bottom: 10px;
}

.service-features li i {
  color: var(--primary-color);
  margin-right: 10px;
}

/* ===== INTERACTIVE ELEMENTS ===== */
.interactive-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.interactive-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 15, 26, 0.7);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: var(--transition);
}

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

.interactive-card-content {
  transform: translateY(20px);
  transition: var(--transition);
  opacity: 0;
}

.interactive-card:hover .interactive-card-content {
  transform: translateY(0);
  opacity: 1;
}

/* ===== PARALLAX SECTIONS ===== */
.parallax-section {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 150px 0;
  position: relative;
}

.parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 15, 26, 0.7);
}

.parallax-content {
  position: relative;
  z-index: 1;
  color: var(--light-text);
  text-align: center;
}

/* ===== 3D HOVER EFFECTS ===== */
.hover-3d {
  transition: transform 0.5s ease;
  transform-style: preserve-3d;
}

.hover-3d:hover {
  transform: rotateY(10deg) rotateX(10deg);
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-color);
}

/* ===== ADDITIONAL ANIMATIONS ===== */
.animate-float {
  animation: float 3s ease-in-out infinite;
}

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

.animate-pulse {
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* ===== CUSTOM SHAPES ===== */
.custom-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.custom-shape svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 80px;
}

.custom-shape .shape-fill {
  fill: #FFFFFF;
}

/* ===== INVESTMENT HIGHLIGHTS ===== */
.investment-highlight {
  position: relative;
  padding-left: 70px;
  margin-bottom: 30px;
}

.investment-highlight-icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background-color: var(--primary-color);
  color: var(--light-text);
  border-radius: 50%;
  font-size: 1.2rem;
}

.investment-highlight h4 {
  margin-bottom: 10px;
}

/* ===== PROPERTY SHOWCASE ===== */
.property-showcase {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 30px;
}

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

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

.property-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(15, 15, 26, 0.9), transparent);
  color: var(--light-text);
  transform: translateY(20px);
  opacity: 0;
  transition: var(--transition);
}

.property-showcase:hover .property-overlay {
  transform: translateY(0);
  opacity: 1;
}

.property-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--primary-color);
  color: var(--light-text);
  padding: 5px 15px;
  border-radius: 30px;
  font-size: 0.8rem;
  text-transform: uppercase;
}

/* ===== TIMELINE ===== */
.timeline {
  position: relative;
  padding: 50px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background-color: var(--primary-color);
}

.timeline-item {
  position: relative;
  margin-bottom: 50px;
}

.timeline-item:nth-child(odd) {
  padding-right: 50px;
  text-align: right;
}

.timeline-item:nth-child(even) {
  padding-left: 50px;
  margin-left: 50%;
}

.timeline-dot {
  position: absolute;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--primary-color);
}

.timeline-item:nth-child(odd) .timeline-dot {
  right: -10px;
}

.timeline-item:nth-child(even) .timeline-dot {
  left: -10px;
}

/* ===== AWARDS SECTION ===== */
.awards-section {
  padding: 100px 0;
}

.award-item {
  text-align: center;
  margin-bottom: 30px;
}

.award-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

/* ===== PARTNERS SECTION ===== */
.partners-section {
  padding: 100px 0;
  background-color: #f8f9fa;
}

.partner-logo {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: var(--transition);
}

.partner-logo:hover {
  filter: grayscale(0);
  opacity: 1;
}

.partner-logo img {
  max-height: 100%;
  max-width: 100%;
}