/* CSS Variables */
:root {
  --primary: #b0926a;
  --secondary: #b0926a;
  --third: #d1bfa6;
  --fourth: rgba(196, 122, 43, 0.966);
  --accent-orange: #f97316;
  --accent-red: #ef4444;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --bg-light: #f8fafc;
  --white: #ffffff;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
}

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

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

.nav-logo h2 {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.5rem;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-btn {
  background-color: var(--primary);
  color: var(--white);
  padding: 10px 25px;
  border-radius: 5px;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
  font-size: 1rem;
}

.nav-btn:hover {
  background: #b89a74;
  transform: translateY(2px);
  box-shadow: var(--shadow-lg);
  cursor: pointer;
}

.nav-link {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

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

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

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

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

.hero-content {
  text-align: center;
  color: var(--white);
  max-width: 1000px;
  padding: 0 20px;
}

.hero-title {
  color: var(--text-dark);
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 10rem;
  line-height: 1.5;
  padding-top: 2rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-button {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  margin-top: 11rem;
}

.cta-button:hover {
  background: #9a7c56;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.cta-button.secondary {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.cta-button.secondary:hover {
  background: var(--primary);
  color: var(--white);
}

/* Page Hero */
.page-hero {
  padding: 120px 0 80px;
  background: var(--bg-light);
  text-align: center;
}

.page-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.25rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* Featured Properties */
.featured-properties {
  padding: 4rem 2rem;
  background: var(--bg-light);
  text-align: center;
}

.featured-properties h2 {
  font-size: 2.2rem;
  color: var(--text-dark);
  margin-bottom: 2rem;
}

.properties-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.featured-properties {
  background: var(#f97316);
  border-radius: 10px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.3s ease;
  border: 2px var(--secondary);
}

.property-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  cursor: pointer;
}

.property-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  padding: 2px 5px 10px 4px;
  margin: 2px;
  border-radius: 5px;

}

.property-info {
  margin: 0.2rem;
  padding: 0.1rem;
  text-align: justify;
}

.property-info h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.property-info .location {
  font-size: 0.95rem;
  color: var(--text-light);
}

.property-card .price {
  font-weight: bold;
  color: var(--accent-orange);
  margin: 0.5rem 0;
  position: absolute;
  top: 8px;
  right: 16px;
}

.property-info .desc {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.property-info .btn {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  margin: 0.6rem 1.2rem;
  background: var(--primary);
  color: var(--white);
  border-radius: 5px;
  text-decoration: none;
  font-size: 0.9rem;
  transition:  0.3s ease-in;
}

.property-info .btn:hover {
  background: var(--accent-red);
}

.cta-wrapper {
  margin-top: 2rem;
}

.cta-wrapper .btn-primary {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background: var(--accent-orange);
  color: var(--white);
  border-radius: 6px;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.3s ease;
}

.cta-wrapper .btn-primary:hover {
  background: var(--accent-red);
}

/* Features Section */
.features {
  padding: 80px 0;
  background: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.feature-card {
  text-align: center;
  padding: 2rem;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.feature-card p {
  color: var(--text-light);
  line-height: 1.6;
}

/* About Section */

.about-us {
  padding: 5rem 2rem;
  background: var(--bg-light);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2.5rem;
}


.about-image img {
  width: 90%;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  align-items: center;
}

.about-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.about-content p {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Features inside About Us */
.about-features {
  display: flex;
  gap: 1.5rem;
}

.about-feature {
  /*display: flex;
  gap: 1rem;*/
  justify-content: center;
}

.about-feature .feature-icon {
  font-size: 1.8rem;
  background: #f8fafc;
  /*color: var(--accent-orange);
  padding-right: 70px;*/
  margin-left: 60px;
  border-radius: 8px;
  height: 50px;
  width: 50px;
  align-items: center;
}

.about-feature .feature-content {
  text-align: center;
}
.about-feature h4 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
  color: var(--text-dark);
}

.about-feature p {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Responsive */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-content {
    text-align: center;
  }

  .about-features {
    justify-content: center;
  }
}

/* Values Section */
.values-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: var(--text-dark);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.value-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
}

.value-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.value-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.value-card p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Properties Section */
.properties-section {
  padding: 80px 0;
}

.properties-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.property-card {
  background-color: rgba(176, 146, 106, 0.15);
  backdrop-filter: blur(10px) saturate(150%);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  /*transition: transform 0.3s ease, box-shadow 0.3s ease;*/
  border:rgba(107, 114, 128, 0.45) 2px solid;
}

.property-card:hover {
  transform: translateY(+5px);
  box-shadow: var(--shadow-lg);
  transition: transform 0.4s ease, box-shadow 0.6s ease-in-out;
}

.property-image {
  position: relative;
  height: 250px;
  overflow: hidden;
  padding: 5px;
  border-radius: 10px;
  object-fit: cover;
  margin: 10px;
}

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

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

.property-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--primary);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

.property-container {
  position: relative;
  text-align: center;
  color: white;
}

.property-content {
  padding: 1.5rem;
}

.property-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.property-location {
  color: var(--text-light);
  margin-bottom: 1rem;
  font-size: 0.875rem;
}

.property-description {
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.property-features {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.property-features span {
  background: var(--bg-light);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.875rem;
  color: var(--text-dark);
}

.property-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.property-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.learn-more-btn {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.learn-more-btn:hover {
  background: #9a7c56;
}

/* Blog Section */
.blog-section {
  padding: 80px 0;
}

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

.blog-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

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

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

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

.blog-content {
  padding: 1.5rem;
}

.blog-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.blog-date,
.blog-category {
  font-size: 0.875rem;
  color: var(--text-light);
}

.blog-category {
  background: var(--bg-light);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
}

.blog-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-dark);
  line-height: 1.4;
}

.blog-content p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.read-more-btn {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

/* Newsletter Section */
.newsletter-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.newsletter-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.newsletter-content p {
  color: var(--text-light);
  margin-bottom: 2rem;
  font-size: 1.125rem;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  max-width: 400px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s ease;
}

.newsletter-form input:focus {
  border-color: var(--primary);
}

.newsletter-form button {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.newsletter-form button:hover {
  background: #9a7c56;
}

/* Contact Section */
.contact-section {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-form-container h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--text-dark);
  border: 5px solid #6b7280;
}

/*.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: var(--third);
}*/

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

.form-group label {
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.submit-btn:hover {
  background: #9a7c56;
}

.contact-info h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--text-dark);
}

.contact-details {
  margin-bottom: 3rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-icon {
  font-size: 1.5rem;
  margin-top: 0.25rem;
}

.contact-text h4 {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.contact-text p {
  color: var(--text-light);
  margin-bottom: 0.25rem;
}

/*.contact {
  display: block;
  justify-content: center;
}*/

.contact img{
  width: 40px;
  height: 40px;
  /*padding-right: 10px;*/
  padding-right: 15px;
}

.footer-contact {
  display: flex;
  /*justify-content: center;*/
  align-items: center;
  margin-bottom: 20px;
}

.social-media h4 {
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.social-link {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: var(--primary);
}

/* Map Section */
.map-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.map-container {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.map-placeholder {
  position: relative;
  height: 400px;
}

.map-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.8);
  color: var(--white);
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.directions-btn {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.directions-btn:hover {
  background: #9a7c56;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: var(--primary);
  color: var(--white);
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Footer */
.footer {
  background: var(--text-dark);
  color: var(--white);
  padding: 60px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
  margin-bottom: 1rem;
  color: var(--white);
}

.footer-section h3 {
  font-size: 1.5rem;
  color: var(--primary);
}

.footer-section p {
  color: #9ca3af;
  margin-bottom: 0.5rem;
}

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

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 2rem;
  text-align: center;
  color: #9ca3af;
}

.stars{
  display: flex;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: var(--white);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: var(--shadow);
    padding: 2rem 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.125rem;
  }

  .page-hero h1 {
    font-size: 2.5rem;
  }

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

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

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

  .newsletter-form {
    flex-direction: column;
  }

  .map-overlay {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

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

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

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .nav-container {
    padding: 1rem 15px;
  }

  .hero-title {
    font-size: 2rem;
  }

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

  .section-title {
    font-size: 2rem;
  }

  .property-features {
    flex-direction: column;
    gap: 0.5rem;
  }

  .property-footer {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
}


.emi-result {
  padding: 1rem;
  
}