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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, system-ui, sans-serif;
  line-height: 1.6;
  color: #1f2937;
  background-color: #ffffff;
}

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: #E07A5F;
  color: white;
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 18px;
}

.btn-block {
  width: 100%;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  z-index: 1000;
  padding: 15px 0;
}

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

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

.logo-img {
  height: 40px;
  width: auto;
}

.logo-text {
  font-size: 24px;
  font-weight: 700;
  color: #E07A5F;
}

.nav {
  display: flex;
  gap: 30px;
}

.nav-link {
  text-decoration: none;
  color: #374151;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-link:hover {
  color: #E07A5F;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-color: #E07A5F;
  padding-top: 80px;
}

.hero-content {
  max-width: 800px;
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 20px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 30px;
}

/* Sections */
.section-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #1f2937;
}

.section-subtitle {
  font-size: 18px;
  text-align: center;
  color: #6b7280;
  margin-bottom: 40px;
}

/* Features */
.features {
  padding: 80px 0;
  background-color: #f9fafb;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.feature-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  text-align: center;
}

.feature-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #1f2937;
}

.feature-description {
  color: #6b7280;
}

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

.contact-form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-input {
  width: 100%;
  padding: 15px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.3s;
}

.form-input:focus {
  outline: none;
  border-color: #E07A5F;
}

/* Properties */
.properties {
  padding: 80px 0;
  background-color: #f9fafb;
}

.properties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.property-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

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

.property-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.property-info {
  padding: 20px;
}

.property-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.property-location {
  color: #6b7280;
  margin-bottom: 10px;
}

.property-price {
  font-size: 24px;
  font-weight: 700;
  color: #E07A5F;
}

.property-details {
  display: flex;
  gap: 15px;
  margin-top: 15px;
  color: #6b7280;
  font-size: 14px;
}

.loading-text {
  text-align: center;
  color: #6b7280;
  grid-column: 1 / -1;
}

/* Testimonials */
.testimonials {
  padding: 80px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.testimonial-card {
  background: #f9fafb;
  padding: 30px;
  border-radius: 12px;
  border-left: 4px solid #E07A5F;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 15px;
  color: #374151;
}

.testimonial-author {
  font-weight: 600;
  color: #E07A5F;
}

/* CTA */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #E07A5F, #3D405B);
  text-align: center;
}

.cta-title {
  font-size: 36px;
  font-weight: 700;
  color: white;
  margin-bottom: 15px;
}

.cta-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 30px;
}

.cta-section .btn-primary {
  background: white;
  color: #E07A5F;
}

/* Stats */
.stats-section {
  padding: 60px 0;
  background-color: #1f2937;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
  text-align: center;
}

.stat-value {
  display: block;
  font-size: 42px;
  font-weight: 700;
  color: #E07A5F;
}

.stat-label {
  color: #9ca3af;
  font-size: 16px;
}

/* Gallery */
.gallery-section {
  padding: 80px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.gallery-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

/* Text Section */
.text-section {
  padding: 60px 0;
}

/* Footer */
.footer {
  background-color: #1f2937;
  color: white;
  padding: 60px 0 30px;
}

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

.footer-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-text, .footer-link {
  display: block;
  color: #9ca3af;
  margin-bottom: 10px;
  text-decoration: none;
}

.footer-link:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid #374151;
  color: #6b7280;
}

/* About Section */
.about-section {
  padding: 80px 0;
}

.about-content {
  font-size: 18px;
  line-height: 1.8;
  color: #4b5563;
  max-width: 800px;
  margin: 0 auto;
}

/* Team Section */
.team-section {
  padding: 80px 0;
  background: #f9fafb;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.team-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.team-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
}

.team-name {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
}

.team-role {
  color: #E07A5F;
  font-weight: 500;
  margin-bottom: 15px;
}

.team-bio {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.6;
}

/* Services Section */
.services-section {
  padding: 80px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.service-card {
  background: #f9fafb;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-icon {
  font-size: 40px;
  color: #E07A5F;
  margin-bottom: 20px;
}

.service-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.service-description {
  color: #6b7280;
  line-height: 1.6;
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background: #f9fafb;
}

.faq-list {
  max-width: 800px;
  margin: 40px auto 0;
}

.faq-item {
  background: white;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.faq-question {
  width: 100%;
  padding: 20px;
  text-align: left;
  background: white;
  border: none;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: '+';
  font-size: 24px;
  color: #E07A5F;
}

.faq-item.open .faq-question::after {
  content: '-';
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #6b7280;
  line-height: 1.6;
}

.faq-item.open .faq-answer {
  padding: 0 20px 20px;
  max-height: 500px;
}

/* Valuation Section */
.valuation-section {
  padding: 80px 0;
}

/* Map Section */
.map-section {
  padding: 40px 0;
}

.map-embed {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Single Property Card */
.property-card-section {
  padding: 60px 0;
}

.single-property-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.single-property-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}

.single-property-info {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Area Guide */
.area-guide-section {
  padding: 80px 0;
  background: #f9fafb;
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.area-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

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

.area-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.area-name {
  font-size: 18px;
  font-weight: 600;
  padding: 20px 20px 10px;
}

.area-description {
  color: #6b7280;
  padding: 0 20px 20px;
  font-size: 14px;
  line-height: 1.6;
}

/* Calculator Section */
.calculator-section {
  padding: 80px 0;
  background: #f9fafb;
}

.calc-result {
  background: white;
  border-radius: 12px;
  padding: 20px;
  margin-top: 20px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.calc-monthly {
  font-size: 24px;
  margin-bottom: 10px;
}

.calc-total {
  color: #6b7280;
}

/* Agent Profile */
.agent-profile-section {
  padding: 80px 0;
}

.agent-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  background: #f9fafb;
  border-radius: 16px;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}

.agent-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 350px;
}

.agent-info {
  padding: 40px 40px 40px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.agent-name {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 5px;
}

.agent-title {
  color: #E07A5F;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 20px;
}

.agent-bio {
  color: #6b7280;
  line-height: 1.8;
  margin-bottom: 20px;
}

.agent-contact {
  margin-bottom: 8px;
}

/* Awards Section */
.awards-section {
  padding: 80px 0;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.award-card {
  text-align: center;
  padding: 30px;
  background: #f9fafb;
  border-radius: 12px;
}

.award-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 15px;
}

.award-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.award-year {
  color: #E07A5F;
  font-weight: 500;
}

/* Client Logos */
.client-logos-section {
  padding: 60px 0;
  background: #f9fafb;
}

.logos-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.client-logo {
  max-height: 60px;
  max-width: 150px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

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

/* Recent Sales */
.recent-sales-section {
  padding: 80px 0;
  background: #f9fafb;
}

/* Image Section */
.image-section {
  padding: 40px 0;
}

.full-width-image {
  display: block;
  margin: 0 auto;
}

.image-caption {
  text-align: center;
  color: #6b7280;
  margin-top: 15px;
  font-size: 14px;
}

/* Video Section */
.video-section {
  padding: 60px 0;
}

.video-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

/* Callback Section */
.callback-section {
  padding: 80px 0;
  background: #f9fafb;
}

/* Newsletter Section */
.newsletter-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #E07A5F, #3D405B);
}

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

.newsletter-section .section-title,
.newsletter-section .section-subtitle {
  color: white;
}

.newsletter-form {
  margin-top: 30px;
}

.newsletter-input-group {
  display: flex;
  gap: 10px;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-input-group .form-input {
  flex: 1;
}

.newsletter-section .btn-primary {
  background: white;
  color: #E07A5F;
}

/* Booking Section */
.booking-section {
  padding: 80px 0;
}

/* Pricing Section */
.pricing-section {
  padding: 80px 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-card {
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.pricing-card.featured {
  border-color: #E07A5F;
  position: relative;
}

.pricing-name {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
}

.pricing-price {
  font-size: 42px;
  font-weight: 700;
  color: #E07A5F;
  margin-bottom: 20px;
}

.pricing-description {
  color: #6b7280;
  margin-bottom: 25px;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  text-align: left;
}

.pricing-features li {
  padding: 10px 0;
  border-bottom: 1px solid #f3f4f6;
  position: relative;
  padding-left: 25px;
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #E07A5F;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 32px;
  }
  
  .nav {
    display: none;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .single-property-card,
  .agent-card {
    grid-template-columns: 1fr;
  }
  
  .newsletter-input-group {
    flex-direction: column;
  }
}
