/* ===== Global Styles ===== */
:root {
  --primary: #4b2e83; /* Deep purple */
  --secondary: #b7a57a; /* Gold */
  --accent: #e8e3d3; /* Light cream */
  --text: #333;
  --light: #f8f8f8;
  --dark: #1a1a1a;
  --header-purple: #4a2c82; /* Purple from slogan.png */
  --header-orange: #ff8c00; /* Orange for company name */
}

.site-header {
  background-color: #4B2E83;
  padding: 0;
}

.slogan-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; /* Bolder weight for better visibility */
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 1px; /* Slightly more spacing */
  padding-left: 15px;
  margin-left: 15px;
  border-left: 2px solid rgba(255,165,0,0.3); /* Orange border to match */
  text-shadow: 0 1px 2px rgba(0,0,0,0.2); /* Subtle shadow for depth */
}

.slogan-line1 {
  font-size: 15px;
  margin-bottom: 3px;
  color: #FFD700; /* Bright gold color */
}

.slogan-line2 {
  font-size: 13px;
  color: #FFA500; /* Bright orange color */
}

.slogan-container:hover .slogan-line1,
.slogan-container:hover .slogan-line2 {
  color: #FFC000; /* Slightly brighter on hover */

}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

html, body {
  margin: 0;
  padding: 0;
  color: var(--text);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  color: var(--primary);
}

a {
  text-decoration: none;
  color: inherit;
}

.btn {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 12px 25px;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s;
}

.btn:hover {
  background: #3a2466;
  transform: translateY(-2px);
}

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

.section-padding {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.section-title p {
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

.title-divider {
  width: 80px;
  height: 3px;
  background: var(--secondary);
  margin: 15px auto;
}

/* ===== Header ===== */
.site-header {
  background-color: var(--header-purple);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo-slogan-container {
  display: flex;
  align-items: center;
  flex: 1;
}

.logo-wrapper {
  margin-right: 15px;
}

.logo {
  height: 50px;
  width: auto;
}

.slogan {
  height: 30px;
  width: auto;
}

.company-name {
  flex: 1;
  text-align: center;
  color: var(--header-orange);
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== Navigation ===== */
.main-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav li {
  margin-left: 25px;
  position: relative;
}

.main-nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s;
  display: flex;
  align-items: center;
}

.main-nav a:hover {
  color: var(--header-orange);
}

/* Dropdown styles */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 200px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  z-index: 1;
  border-radius: 4px;
  top: 100%;
  left: 0;
}

.dropdown-content a {
  color: var(--text);
  padding: 12px 16px;
  display: block;
}

.dropdown-content a:hover {
  background-color: var(--accent);
  color: var(--primary);
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* ===== Hero Banner ===== */
.hero-banner {
  background: var(--primary);
  color: white;
  padding: 100px 0;
  text-align: center;
  position: relative;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 42px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero-content p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
}

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

.about-text h3 {
  font-size: 28px;
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 20px;
}

.about-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.stat-item {
  text-align: center;
  padding: 30px;
  background: var(--light);
  border-radius: 8px;
}

.stat-item h3 {
  font-size: 42px;
  color: var(--primary);
  margin-bottom: 10px;
}

.stat-item p {
  color: #666;
  font-weight: 600;
}

/* ===== Team Page ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
}

.team-member {
  background: white;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s;
}

.team-member:hover {
  transform: translateY(-10px);
}

.team-img {
  height: 300px;
  background: #eee;
  position: relative;
}

.team-info {
  padding: 25px;
  text-align: center;
}

.team-info h3 {
  margin-bottom: 5px;
}

.team-info p {
  color: var(--secondary);
  font-weight: 600;
}

/* ===== Properties Page ===== */
.property-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

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

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

.property-img {
  height: 250px;
  background: #f5f7fa;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-size: 18px;
}

.property-info {
  padding: 25px;
  background: white;
}

.property-info h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.property-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 15px 0;
  color: #666;
}

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

.property-meta i {
  margin-right: 5px;
  color: var(--primary);
}

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

/* ===== Services Page ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: white;
  padding: 40px 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s;
  text-align: center;
}

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

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

.service-card h3 {
  margin-bottom: 15px;
}

/* ===== Contact Page ===== */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info {
  background: var(--light);
  padding: 40px;
  border-radius: 8px;
}

.contact-info h3 {
  margin-bottom: 25px;
  font-size: 24px;
}

.contact-details {
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  margin-bottom: 20px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.contact-text h4 {
  margin-bottom: 5px;
}

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

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

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

.contact-form {
  background: white;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  transition: border 0.3s;
}

.form-control:focus {
  border-color: var(--primary);
  outline: none;
}

textarea.form-control {
  min-height: 150px;
}

.map-container {
  margin-top: 50px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
}

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

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

.footer-logo {
  height: 60px;
  margin-bottom: 20px;
}

.footer-logo img {
  height: 100%;
  width: auto;
}

.footer-about p {
  margin-bottom: 25px;
  color: #ccc;
}

.footer-links h3 {
  color: white;
  margin-bottom: 25px;
  font-size: 20px;
}

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

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

.footer-links a {
  color: #ccc;
  transition: color 0.3s;
}

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

.footer-contact p {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  color: #ccc;
}

.footer-contact i {
  margin-right: 10px;
  color: var(--secondary);
}

.copyright {
  text-align: center;
  padding-top: 40px;
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #999;
  font-size: 14px;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .about-content {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-container {
    grid-template-columns: 1fr;
  }

  .header-container {
    flex-wrap: wrap;
  }

  .company-name {
    order: 3;
    flex: 100%;
    margin-top: 15px;
  }
}

@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    padding: 15px;
  }
  
  .logo-slogan-container {
    margin-bottom: 15px;
    justify-content: center;
  }
  
  .company-name {
    margin: 15px 0;
    order: initial;
    flex: initial;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: center;
  }
  
  .main-nav li {
    margin: 0 0 15px;
  }
  
  .dropdown-content {
    position: static;
    box-shadow: none;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .section-padding {
    padding: 60px 0;
  }
  
  .hero-banner {
    padding: 80px 0;
  }
  
  .hero-content h1 {
    font-size: 32px;
  }
  .privacy-content h3 {
    font-size: 24px;
    margin: 30px 0 15px;
    color: var(--primary);
  }

  .privacy-content p {
    margin-bottom: 20px;
    line-height: 1.7;
  }

  .property-tag {
    background: var(--primary);
    color: white;
    padding: 5px 15px;
    position: absolute;
   top: 20px;
    left: 20px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
  }

  .property-tag.invest {
    background: var(--secondary);
    color: var(--dark);
  }

/* Sold tag style */
  .property-tag[style*="background: #4CAF50"] {
    background: #4CAF50 !important;
  }

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

  .service-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
  }

  .service-features i {
    margin-right: 10px;
    color: var(--secondary);
  }
  /* Header styles */
  

}