/* Golden Rose Real Estate - Premium Dubai Real Estate Styles */
:root {
  --primary: #11403F;
  --gold: #BC9D45;
  --white: #FFFFFF;
  --light-gray: #F8F9FA;
  --dark-text: #1A1A1A;
  --gray-text: #4B5563;
}



.navbar-brand{
    display:flex;
    align-items:center;
}

.navbar-logo{
    height:140px; /* size increase/decrease kar sakte hain */
    width:auto;
    object-fit:contain;
}

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

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: var(--white);
  color: var(--dark-text);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
}

/* Navbar */
.navbar {
  background-color: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar-brand {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
}

.navbar-brand .gold {
  color: var(--gold);
}

.nav-link {
  color: var(--dark-text);
  font-weight: 500;
  padding: 0.75rem 1.25rem;
  transition: color 0.3s ease;
}

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

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 700px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(17,64,63,0.65), rgba(17,64,63,0.45));
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 800px;
}

.hero h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

/* Buttons */
.btn-primary {
  background-color: var(--gold);
  color: var(--primary);
  border: none;
  padding: 14px 32px;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover {
  background-color: #a88a3a;
  transform: translateY(-2px);
  color: var(--primary);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  padding: 14px 32px;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

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

/* Section Styles */
.section {
  padding: 5rem 0;
}

.section-title {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--gold);
}

/* Cards */
.property-card, .service-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: 1px solid #eee;
}

.property-card:hover, .service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(17,64,63,0.12);
}

.property-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.price-tag {
  background-color: var(--gold);
  color: var(--primary);
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 1.05rem;
  display: inline-block;
}

/* Form */
.form-control {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 14px 18px;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(188,157,69,0.15);
  outline: none;
}

/* Footer */
.footer {
  background-color: var(--primary);
  color: #ddd;
  padding: 4rem 0 2rem;
}

.footer h5 {
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.footer a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* Floating WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37,211,102,0.4);
  z-index: 999;
  transition: transform 0.3s ease;
  text-decoration: none;
}

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

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

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

/* Responsive */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 2.75rem;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.25rem;
  }
  .section {
    padding: 3.5rem 0;
  }
}