/* Custom CSS for LuxuryEstate */

body {
  font-family: "Raleway", sans-serif;
  overflow-x: hidden;
  color: #333;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}

/* Main Colors */
:root {
  --navy: #1c2a39;
  --gold: #c3a75b;
  --dark-gold: #b8860b;
  --light-bg: #f8f9fa;
}

/* Navbar Styles */
#mainNav {
  transition: background-color 0.3s ease, padding 0.3s ease;
  background-color: transparent;
  height: 7rem;
}

.navbar-nav .nav-link {
  color: white;
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar-nav.project-links .nav-link {
  color: #000000;
}

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

.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.95) !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled .navbar-nav .nav-link {
  color: var(--navy);
}

.navbar.scrolled .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar .logo-dark {
  display: none;
}
.navbar.scrolled .logo-light {
  display: none;
}
.navbar.scrolled .logo-dark {
  display: block;
}
/* Custom Buttons */
.btn-gold {
  background-color: var(--gold);
  border-color: var(--gold);
  color: white;
  transition: all 0.3s ease;
}

.btn-gold:hover {
  background-color: var(--dark-gold);
  border-color: var(--dark-gold);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.navy-badge {
  background-color: var(--navy);
}

.gold-accent {
  color: var(--gold);
}

.navy-text {
  color: var(--navy);
}

/* Section Padding */
.py-lg-7 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

/* Parallax Base Styles */
.parallax-section {
  position: relative;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
}

#home {
  background-image: url("images/home-banner-bg.jpg");
  margin-top: -76px;
}

#projects {
  background-image: url("images/parallax-bg.jpg");
  background-position: center center;
  height: auto;
}
/* #methodology {
  background-image: url("images/bg-001.jpg");
  background-position: center center;
  height: auto;
} */

.parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(
    28,
    42,
    57,
    0.95
  ); 
}
.parallax-overlay-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(255 255 255 / 80%);
}
.text-container {
  padding-top: 10rem;
}

/* Custom Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Property Card Styles */
.property-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  overflow: hidden;
}

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

.property-card img {
  transition: transform 0.5s ease;
}

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

/* Working process */
.process-step {
  position: relative;
  padding-bottom: 30px;
}

.process-step:not(:last-child):after {
  content: "";
  position: absolute;
  height: 50%;
  width: 2px;
  background-color: var(--gold);
  left: 20px;
  top: 50px;
  z-index: 0;
}

.step-number {
  width: 40px;
  height: 40px;
  background-color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

/* Decorative elements */
.gold-square {
  width: 200px;
  height: 200px;
  background-color: var(--gold);
  opacity: 0.2;
}

.text-white-75 {
  color: rgba(255, 255, 255, 0.75);
}

/* Media queries for responsive design */
@media (max-width: 991px) {
  .navbar {
    background-color: rgba(255, 255, 255, 1) !important;
  }

  .navbar .navbar-nav .nav-link {
    color: var(--navy);
  }

  .parallax-section {
    background-attachment: scroll;
  }

  #home {
    height: auto;
    min-height: 70vh;
  }

  .navbar-collapse {
    background-color: #ffffff;
    margin-top: -1rem;
  }
}

@media (max-width: 767px) {
  .process-step:not(:last-child):after {
    display: none;
  }
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 1;
}

/* Project Styles */
:root {
  --primary-gradient: linear-gradient(135deg, #c3a75b 0%, #182938 100%);
  --card-bg: rgba(255, 255, 255, 0.95);
  --text-primary: #2d3748;
  --text-secondary: #4a5568;
  --border-radius: 20px;
  --shadow-light: 0 10px 30px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.glass-card {
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-medium);
  transition: all 0.3s ease;
}

.glass-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.project-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 0.8s ease;
}

.meta-card {
  background: linear-gradient(135deg, #324351 0%, #182938 100%);
  color: white;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.meta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.meta-card:nth-child(2) {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.meta-card:nth-child(3) {
  background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.section-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  position: relative;
  margin-bottom: 2rem;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--primary-gradient);
  border-radius: 2px;
}

.photo-card {
  border-radius: 16px;
  transition: all 0.3s ease;
  overflow: hidden;
}

.photo-card:hover {
  transform: scale(1.02);
  border-color: #667eea;
  box-shadow: 0 15px 35px rgba(102, 126, 234, 0.3);
}

.photo-card:hover::before {
  background: #667eea;
  transform: translate(-50%, -50%) scale(1.2);
}

.photo-card .photo-label {
  font-weight: 600;
  color: var(--text-secondary);
  z-index: 2;
  position: relative;
  text-align: center;
  transition: color 0.3s ease;
}

.photo-card:hover .photo-label {
  color: #667eea;
}

.stat-card {
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.1),
    rgba(118, 75, 162, 0.1)
  );
  border: 1px solid rgba(102, 126, 234, 0.2);
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
}

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

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #667eea;
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: #718096;
  margin-top: 0.5rem;
}

.content-card {
  position: relative;
  overflow: hidden;
}

.content-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--primary-gradient);
}

.text-content {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 1.1rem;
  min-height: 120px;
}

.text-content.large {
  min-height: 200px;
}

.badge-custom {
  background: var(--primary-gradient);
  color: white;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.85rem;
}

.icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin: 0 auto 1rem;
}

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

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

.animate-in {
  animation: fadeInUp 0.6s ease forwards;
}

.btn-gradient {
  background: var(--primary-gradient);
  border: none;
  color: white;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-light);
  color: white;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.5rem;
  }
}

.logo {
  width: 100px;
}

address a {
  color: #ffffff;
  text-decoration: none;
}

.footer {
  background-color: #192938;
}

.hero-section-bg {
  margin-top: 7rem;
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("https://images.unsplash.com/photo-1582407947304-fd86f028f716?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80");
  background-size: cover;
  background-position: center center;
  padding: 80px 0;
}

.home-contact-section .contact-card {
  height: 200px;
}

.home-contact-section .contact-card.whatsapp-card img {
  width: 60px;
  margin-bottom: 1rem;
}

.home-contact-section a {
  color: #000000;
  text-decoration: none;
}

.whatsapp img {
  position: fixed;
  right: 1.5vw;
  bottom: 16vh;
  width: 50px;
  z-index: 99;
}
