/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&family=Open+Sans:wght@300;400;600;700&display=swap');

/* CSS Variables */
:root {
  --primary-color: #0949B3; /* Royal Blue */
  --primary-rgb: 9, 73, 179;
  --accent-color: #3DA8F5; /* Baby Blue */
  --accent-rgb: 61, 168, 245;
  --dark-color: #0B1E36; /* Navy Blue / Dark text */
  --dark-rgb: 11, 30, 54;
  --light-bg: #F5F8FC; /* Light gray-blue background */
  --white: #FFFFFF;
  --gray-border: #E2E8F0;
  --gray-text: #64748B;
  --success-color: #10B981;
  
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 20px rgba(9, 73, 179, 0.08);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 20px 40px rgba(9, 73, 179, 0.15);
  
  --border-radius-sm: 6px;
  --border-radius-md: 12px;
  --border-radius-lg: 20px;
  
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--dark-color);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

img {
  max-width: 100%;
  display: block;
}

/* Container Layout */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section-bg {
  background-color: var(--light-bg);
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-normal);
  padding: 20px 0;
}

header.scrolled {
  background-color: var(--white);
  padding: 10px 0;
  box-shadow: var(--shadow-md);
}

header.scrolled .nav-link {
  color: var(--dark-color);
}

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

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

.logo-link {
  display: flex;
  align-items: center;
  height: 65px;
  width: auto;
}

.logo-img {
  height: 100%;
  width: auto;
  transition: var(--transition-normal);
}

header .logo-color {
  display: none;
}

header .logo-white {
  display: block;
}

header.scrolled .logo-color {
  display: block;
}

header.scrolled .logo-white {
  display: none;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  color: var(--white);
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--accent-color);
  transition: var(--transition-normal);
  border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.nav-cta::after {
  display: none;
}

.nav-cta {
  background-color: var(--accent-color);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: var(--border-radius-sm);
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(61, 168, 245, 0.4);
}

.nav-cta:hover {
  background-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(9, 73, 179, 0.4);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.nav-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--white);
  margin: 5px 0;
  transition: var(--transition-normal);
  border-radius: 2px;
}

header.scrolled .nav-toggle span {
  background-color: var(--dark-color);
}

/* Hero Section */
.hero {
  height: 90vh;
  min-height: 650px;
  position: relative;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(9, 73, 179, 0.8) 0%, rgba(11, 30, 54, 0.85) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-tagline {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 15px;
}

.hero h1 {
  font-size: 54px;
  font-weight: 800;
  margin-bottom: 24px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hero p {
  font-size: 20px;
  margin-bottom: 40px;
  opacity: 0.9;
  max-width: 650px;
}

/* Search Container overlay in Hero */
.search-container {
  background: var(--white);
  border-radius: var(--border-radius-md);
  padding: 30px;
  box-shadow: var(--shadow-lg);
  margin-top: -80px;
  position: relative;
  z-index: 10;
}

.search-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)) 150px;
  gap: 16px;
  align-items: flex-end;
}

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

.form-group label {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--dark-color);
  text-transform: uppercase;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-border);
  border-radius: var(--border-radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--dark-color);
  background-color: var(--white);
  transition: var(--transition-fast);
  outline: none;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(9, 73, 179, 0.15);
}

.search-btn {
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 14px;
  border-radius: var(--border-radius-sm);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(9, 73, 179, 0.3);
}

.search-btn:hover {
  background-color: var(--accent-color);
  box-shadow: 0 6px 20px rgba(61, 168, 245, 0.4);
  transform: translateY(-1px);
}

/* Sections General */
.section-title {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px auto;
}

.section-title span {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--accent-color);
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}

.section-title h2 {
  font-size: 38px;
  color: var(--dark-color);
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--primary-color);
  border-radius: 2px;
}

/* Properties Grid */
.properties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.property-card {
  background-color: var(--white);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-slow);
  border: 1px solid var(--gray-border);
  position: relative;
  display: flex;
  flex-direction: column;
}

.property-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(9, 73, 179, 0.15);
}

.property-image-wrapper {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.property-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

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

.property-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.5px;
  z-index: 5;
  box-shadow: var(--shadow-sm);
}

.property-badge.let-agreed {
  background-color: var(--gray-text);
}

.property-price-tag {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background-color: var(--white);
  color: var(--primary-color);
  padding: 8px 16px;
  border-radius: var(--border-radius-sm);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 18px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--accent-color);
}

.property-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.property-title {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--dark-color);
}

.property-address {
  font-size: 14px;
  color: var(--gray-text);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.property-address i {
  color: var(--accent-color);
}

.property-specs {
  display: flex;
  justify-content: space-between;
  padding-top: 15px;
  border-top: 1px solid var(--gray-border);
  margin-top: auto;
  gap: 10px;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--gray-text);
  font-weight: 600;
}

.spec-item i {
  color: var(--primary-color);
  font-size: 16px;
}

.card-cta {
  width: 100%;
  text-align: center;
  padding: 12px;
  background-color: var(--light-bg);
  border: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  color: var(--primary-color);
  cursor: pointer;
  transition: var(--transition-fast);
  border-top: 1px solid var(--gray-border);
}

.property-card:hover .card-cta {
  background-color: var(--primary-color);
  color: var(--white);
}

/* Why Choose Us & Info Cards */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-card {
  background-color: var(--white);
  padding: 40px 30px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  text-align: center;
  border: 1px solid var(--gray-border);
  border-bottom: 4px solid var(--gray-border);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-bottom-color: var(--accent-color);
}

.feature-icon-wrapper {
  width: 80px;
  height: 80px;
  background-color: rgba(9, 73, 179, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px auto;
  transition: var(--transition-normal);
}

.feature-card:hover .feature-icon-wrapper {
  background-color: var(--primary-color);
}

.feature-icon-wrapper i {
  font-size: 36px;
  color: var(--primary-color);
  transition: var(--transition-normal);
}

.feature-card:hover .feature-icon-wrapper i {
  color: var(--white);
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.feature-card p {
  color: var(--gray-text);
  font-size: 15px;
}

/* Call to Action Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
  position: relative;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(61, 168, 245, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner h2 {
  font-size: 40px;
  margin-bottom: 20px;
}

.cta-banner p {
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 40px auto;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 16px 36px;
  border-radius: var(--border-radius-sm);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-primary {
  background-color: var(--accent-color);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(61, 168, 245, 0.4);
}

.btn-primary:hover {
  background-color: var(--white);
  color: var(--primary-color);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(61, 168, 245, 0.2);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

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

/* Testimonial Slider */
.testimonials-section {
  overflow: hidden;
}

.testimonials-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
  min-width: 100%;
  padding: 20px;
  text-align: center;
}

.testimonial-quote {
  font-size: 20px;
  font-style: italic;
  margin-bottom: 30px;
  line-height: 1.8;
  color: var(--dark-color);
  position: relative;
}

.testimonial-quote::before,
.testimonial-quote::after {
  content: '"';
  font-family: var(--font-heading);
  font-size: 60px;
  color: rgba(9, 73, 179, 0.1);
  position: absolute;
  line-height: 1;
}

.testimonial-quote::before {
  top: -20px;
  left: -20px;
}

.testimonial-quote::after {
  bottom: -40px;
  right: -20px;
}

.testimonial-author {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.testimonial-role {
  font-size: 13px;
  color: var(--gray-text);
  font-weight: 600;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--gray-border);
  cursor: pointer;
  transition: var(--transition-fast);
}

.dot.active {
  background-color: var(--primary-color);
  width: 24px;
  border-radius: 10px;
}

/* Trust Badges */
.trust-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
  padding: 40px 0;
  border-top: 1px solid var(--gray-border);
  margin-top: 60px;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 15px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-text);
}

.badge-item i {
  font-size: 32px;
  color: var(--primary-color);
}

/* Property Page Filters and Header */
.page-hero {
  padding: 140px 0 60px 0;
  background: linear-gradient(135deg, var(--dark-color) 0%, var(--primary-color) 100%);
  color: var(--white);
  text-align: center;
}

.page-hero h1 {
  font-size: 44px;
  margin-bottom: 15px;
}

.breadcrumbs {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  opacity: 0.8;
}

.breadcrumbs a:hover {
  color: var(--accent-color);
}

.breadcrumbs span {
  color: var(--accent-color);
}

.filter-section {
  background-color: var(--white);
  box-shadow: var(--shadow-md);
  border-radius: var(--border-radius-md);
  padding: 30px;
  margin-top: -40px;
  margin-bottom: 50px;
  position: relative;
  z-index: 20;
  border: 1px solid var(--gray-border);
}

/* About Page Styles */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.about-text h3 {
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.about-text p {
  font-size: 16px;
  margin-bottom: 20px;
  color: var(--dark-color);
  opacity: 0.95;
}

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

.stat-item {
  background-color: var(--light-bg);
  padding: 24px;
  border-radius: var(--border-radius-md);
  text-align: center;
  border-left: 4px solid var(--primary-color);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.stat-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-text);
  text-transform: uppercase;
}

.about-image {
  position: relative;
}

.about-image img {
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.about-image::before {
  content: '';
  position: absolute;
  top: -15px;
  left: -15px;
  width: 100px;
  height: 100px;
  border-top: 8px solid var(--accent-color);
  border-left: 8px solid var(--accent-color);
  border-top-left-radius: 8px;
}

.about-image::after {
  content: '';
  position: absolute;
  bottom: -15px;
  right: -15px;
  width: 100px;
  height: 100px;
  border-bottom: 8px solid var(--primary-color);
  border-right: 8px solid var(--primary-color);
  border-bottom-right-radius: 8px;
  z-index: -1;
}

/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.team-card {
  background-color: var(--white);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-border);
  text-align: center;
  transition: var(--transition-normal);
}

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

.team-image-wrapper {
  height: 320px;
  overflow: hidden;
}

.team-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

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

/* Icon-based avatar (no photo) */
.team-icon-avatar {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
  position: relative;
  overflow: hidden;
}

.team-icon-avatar::before {
  content: '';
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  top: -40px;
  right: -60px;
}

.team-icon-avatar i {
  font-size: 72px;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  z-index: 1;
}

.team-info {
  padding: 24px;
}

.team-name {
  font-size: 20px;
  margin-bottom: 5px;
  color: var(--dark-color);
}

.team-role {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-color);
  text-transform: uppercase;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.team-bio {
  font-size: 14px;
  color: var(--gray-text);
  margin-bottom: 20px;
}

.team-contact {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.team-contact-link {
  width: 36px;
  height: 36px;
  background-color: var(--light-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
}

.team-contact-link:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

/* Landlords Page Styles */
.services-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
  font-size: 17px;
  color: var(--gray-text);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
  align-items: stretch;
}

.pricing-card {
  background-color: var(--white);
  border-radius: var(--border-radius-md);
  border: 1px solid var(--gray-border);
  padding: 40px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-md);
  position: relative;
  transition: var(--transition-normal);
}

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

.pricing-card.featured {
  border: 2px solid var(--primary-color);
  box-shadow: var(--shadow-lg);
}

.pricing-ribbon {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--primary-color);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

.pricing-header {
  margin-bottom: 30px;
  border-bottom: 1px solid var(--gray-border);
  padding-bottom: 24px;
}

.pricing-title {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.pricing-price {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 36px;
  color: var(--primary-color);
}

.pricing-price span {
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-text);
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 40px;
}

.pricing-features li {
  font-size: 15px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--dark-color);
}

.pricing-features li i {
  color: var(--success-color);
  margin-top: 4px;
}

.pricing-btn {
  margin-top: auto;
  width: 100%;
  text-align: center;
  padding: 14px;
  border-radius: var(--border-radius-sm);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  background-color: var(--light-bg);
  color: var(--primary-color);
  transition: var(--transition-fast);
}

.pricing-card.featured .pricing-btn {
  background-color: var(--primary-color);
  color: var(--white);
}

.pricing-card.featured .pricing-btn:hover {
  background-color: var(--accent-color);
}

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

/* Transparent Fees Table */
.fees-table-wrapper {
  overflow-x: auto;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-border);
  margin-top: 40px;
  margin-bottom: 40px;
}

.fees-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  background-color: var(--white);
  min-width: 600px;
}

.fees-table th,
.fees-table td {
  padding: 18px 24px;
  border-bottom: 1px solid var(--gray-border);
}

.fees-table th {
  background-color: var(--primary-color);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.fees-table tr:last-child td {
  border-bottom: none;
}

.fees-table tbody tr:nth-child(even) {
  background-color: var(--light-bg);
}

.fee-highlight {
  font-weight: 700;
  color: var(--primary-color);
}

/* FAQ Styles */
.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-card {
  background-color: var(--white);
  border-radius: var(--border-radius-md);
  border: 1px solid var(--gray-border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition-normal);
}

.faq-question {
  padding: 24px;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--dark-color);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.faq-question i {
  color: var(--primary-color);
  transition: var(--transition-normal);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal) ease-out;
  background-color: var(--light-bg);
}

.faq-answer-content {
  padding: 0 24px 24px 24px;
  font-size: 15px;
  color: var(--gray-text);
}

.faq-card.active .faq-question i {
  transform: rotate(180deg);
}

.faq-card.active .faq-answer {
  max-height: 200px; /* Adjust if content is very long */
}

/* Page Layout for Forms (Valuation / Contact) */
.form-page-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: start;
}

.form-wrapper {
  background-color: var(--white);
  border-radius: var(--border-radius-md);
  border: 1px solid var(--gray-border);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.form-wrapper h3 {
  font-size: 24px;
  margin-bottom: 24px;
  border-bottom: 2px solid var(--light-bg);
  padding-bottom: 15px;
  color: var(--primary-color);
}

.classic-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--dark-color);
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-border);
  border-radius: var(--border-radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--dark-color);
  outline: none;
  background-color: var(--white);
  transition: var(--transition-fast);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(9, 73, 179, 0.15);
}

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

.submit-btn {
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 16px;
  border-radius: var(--border-radius-sm);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition-fast);
  box-shadow: 0 4px 14px rgba(9, 73, 179, 0.3);
}

.submit-btn:hover {
  background-color: var(--accent-color);
  box-shadow: 0 6px 20px rgba(61, 168, 245, 0.4);
}

.form-feedback {
  display: none;
  padding: 16px;
  border-radius: var(--border-radius-sm);
  font-weight: 600;
  margin-top: 15px;
  font-size: 14px;
}

.form-feedback.success {
  display: block;
  background-color: #D1FAE5;
  color: #065F46;
  border: 1px solid #A7F3D0;
}

.form-feedback.error {
  display: block;
  background-color: #FEE2E2;
  color: #991B1B;
  border: 1px solid #FCA5A5;
}

/* Sidebar Info Cards */
.sidebar-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-box {
  background-color: var(--light-bg);
  border-radius: var(--border-radius-md);
  padding: 30px;
  border-left: 5px solid var(--primary-color);
}

.info-box h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.info-box p {
  font-size: 15px;
  color: var(--dark-color);
  opacity: 0.9;
  margin-bottom: 15px;
}

.info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.info-list-item {
  display: flex;
  gap: 12px;
  font-size: 14px;
}

.info-list-item i {
  color: var(--accent-color);
  font-size: 18px;
  margin-top: 2px;
}

/* Interactive Map Container */
.map-container {
  height: 350px;
  width: 100%;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--gray-border);
  box-shadow: var(--shadow-md);
  z-index: 10;
}

/* Property Modal Details styling */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(11, 30, 54, 0.7);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-box {
  background-color: var(--white);
  border-radius: var(--border-radius-md);
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  position: relative;
  transform: translateY(30px);
  transition: transform var(--transition-normal);
}

.modal-overlay.active .modal-box {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--white);
  color: var(--dark-color);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  z-index: 10;
  font-size: 20px;
  transition: var(--transition-fast);
}

.modal-close:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.modal-img-container {
  height: 400px;
  width: 100%;
  position: relative;
}

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

.modal-content {
  padding: 40px;
}

.modal-header-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--gray-border);
  padding-bottom: 20px;
}

.modal-title-addr h3 {
  font-size: 28px;
  color: var(--dark-color);
  margin-bottom: 8px;
}

.modal-title-addr p {
  color: var(--gray-text);
  font-size: 15px;
}

.modal-price-box {
  text-align: right;
}

.modal-price {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  color: var(--primary-color);
}

.modal-price-span {
  font-size: 14px;
  color: var(--gray-text);
  display: block;
}

.modal-specs-row {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
  background-color: var(--light-bg);
  padding: 15px 25px;
  border-radius: var(--border-radius-sm);
}

.modal-spec-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
}

.modal-spec-item i {
  color: var(--accent-color);
  font-size: 18px;
}

.modal-description {
  margin-bottom: 30px;
  line-height: 1.8;
  color: #334155;
}

.modal-description h4 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--dark-color);
}

.modal-details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.modal-features-list {
  list-style: none;
}

.modal-features-list li {
  font-size: 15px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.modal-features-list li i {
  color: var(--accent-color);
}

.modal-agent-form {
  background-color: var(--light-bg);
  padding: 24px;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--gray-border);
}

.modal-agent-form h4 {
  font-size: 16px;
  margin-bottom: 15px;
  color: var(--primary-color);
}

/* Footer Styling */
footer {
  background-color: var(--dark-color);
  color: var(--white);
  padding: 80px 0 30px 0;
  border-top: 5px solid var(--accent-color);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--accent-color);
  border-radius: 2px;
}

.footer-about p {
  font-size: 14px;
  opacity: 0.85;
  margin-bottom: 24px;
  line-height: 1.7;
}

.footer-about .logo-link {
  height: 50px;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 14px;
  opacity: 0.85;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--accent-color);
  padding-left: 5px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  font-size: 14px;
  opacity: 0.85;
  margin-bottom: 15px;
}

.footer-contact-item i {
  color: var(--accent-color);
  font-size: 16px;
  margin-top: 3px;
}

.footer-newsletter p {
  font-size: 14px;
  opacity: 0.85;
  margin-bottom: 20px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-form input {
  flex-grow: 1;
  padding: 12px;
  border: 1px solid rgba(255,255,255,0.15);
  background-color: rgba(255,255,255,0.08);
  border-radius: var(--border-radius-sm);
  color: var(--white);
  outline: none;
  font-family: var(--font-body);
  font-size: 14px;
}

.newsletter-form input::placeholder {
  color: rgba(255,255,255,0.5);
}

.newsletter-form button {
  background-color: var(--accent-color);
  color: var(--white);
  border: none;
  width: 48px;
  height: 48px;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: var(--transition-fast);
}

.newsletter-form button:hover {
  background-color: var(--primary-color);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 13px;
  opacity: 0.7;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

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

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 44px;
  }
  .form-page-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }
  
  /* Navigation */
  header {
    background-color: var(--white);
    padding: 15px 0;
    box-shadow: var(--shadow-sm);
  }
  
  .nav-link {
    color: var(--dark-color);
  }
  
  header .logo-color {
    display: block;
  }
  
  header .logo-white {
    display: none;
  }
  
  .nav-toggle {
    display: block;
  }
  
  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }
  
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -7px);
  }
  
  header.scrolled .nav-toggle span,
  .nav-toggle span {
    background-color: var(--dark-color);
  }
  
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--white);
    flex-direction: column;
    padding: 40px 24px;
    gap: 24px;
    align-items: flex-start;
    transition: var(--transition-slow);
    box-shadow: 0 10px 15px rgba(0,0,0,0.05);
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-menu li {
    width: 100%;
  }
  
  .nav-link {
    font-size: 18px;
    display: block;
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-border);
  }
  
  .nav-link::after {
    display: none;
  }
  
  .nav-cta {
    display: block;
    text-align: center;
    margin-top: 20px;
  }

  /* Search */
  .search-container {
    margin-top: 0;
    padding: 20px;
  }
  
  .search-form {
    grid-template-columns: 1fr;
  }
  
  .search-btn {
    margin-top: 10px;
  }

  /* Hero */
  .hero {
    height: 70vh;
    padding-top: 80px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero p {
    font-size: 16px;
    margin-bottom: 24px;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .about-image img {
    height: 350px;
  }
  
  /* Landlords */
  .fees-table-wrapper {
    margin: 20px -24px;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  /* Details Modal */
  .modal-img-container {
    height: 250px;
  }
  
  .modal-content {
    padding: 24px;
  }
  
  .modal-header-info {
    flex-direction: column;
    gap: 15px;
  }
  
  .modal-price-box {
    text-align: left;
  }
  
  .modal-specs-row {
    flex-direction: column;
    gap: 10px;
    padding: 15px;
  }
  
  .modal-details-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .section-title h2 {
    font-size: 28px;
  }
}

/* ================================================
   COMING SOON SECTION
   ================================================ */
.coming-soon-wrapper {
  background: linear-gradient(135deg, #f5f8fc 0%, rgba(61,168,245,0.05) 100%);
  border: 1px solid var(--gray-border);
  border-radius: var(--border-radius-lg);
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.coming-soon-wrapper::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(9,73,179,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.coming-soon-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px auto;
  animation: cs-pulse 2.5s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(9,73,179,0.4);
}

.coming-soon-icon i {
  font-size: 42px;
  color: var(--white);
}

@keyframes cs-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(9,73,179,0.35); }
  60%  { box-shadow: 0 0 0 20px rgba(9,73,179,0); }
  100% { box-shadow: 0 0 0 0 rgba(9,73,179,0); }
}

.coming-soon-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.coming-soon-title {
  font-size: clamp(26px, 4vw, 40px);
  color: var(--dark-color);
  margin-bottom: 20px;
  line-height: 1.3;
}

.coming-soon-subtitle {
  font-size: 17px;
  color: var(--gray-text);
  max-width: 640px;
  margin: 0 auto 40px auto;
  line-height: 1.8;
}

.coming-soon-chips {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 50px;
}

.cs-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--gray-border);
  color: var(--dark-color);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
}

.cs-chip i {
  color: var(--accent-color);
}

.coming-soon-form-box {
  background: var(--white);
  border-radius: var(--border-radius-md);
  padding: 40px;
  max-width: 720px;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-border);
  text-align: left;
}

.coming-soon-form-box h3 {
  font-size: 22px;
  color: var(--dark-color);
  margin-bottom: 8px;
}

.cs-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

@media (max-width: 600px) {
  .cs-form-row {
    grid-template-columns: 1fr;
  }
  .coming-soon-wrapper {
    padding: 50px 20px;
  }
  .coming-soon-form-box {
    padding: 24px;
  }
}

/* Property Grid Layout */
.property-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.property-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

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

.property-img {
  position: relative;
  height: 280px; /* Taller to better fit portrait photos */
  overflow: hidden;
  background-color: #f8f9fa; /* Clean, premium light gray background instead of black */
  border-bottom: 1px solid var(--gray-border);
}

.property-img img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Prevents cropping */
  transition: transform 0.5s ease;
  padding: 0; /* Clean edges */
}

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

.property-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--primary-color);
  color: var(--white);
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  z-index: 2;
}

.property-content {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

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

.property-price span {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-text);
}

.property-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--dark-color);
}

.property-address {
  color: var(--gray-text);
  font-size: 14px;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
}

.property-address i {
  margin-top: 3px;
  margin-right: 8px;
  color: var(--primary-color);
}

.property-features {
  display: flex;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 15px 0;
  margin-bottom: 20px;
  justify-content: space-between;
}

.feature {
  display: flex;
  align-items: center;
  color: var(--dark-color);
  font-size: 14px;
  font-weight: 500;
}

.feature i {
  color: var(--accent-color);
  margin-right: 6px;
  font-size: 16px;
}

.property-action {
  margin-top: auto;
}

.property-action .btn {
  width: 100%;
}

/* Form Message States */
.form-success-msg {
  display: none;
  background: rgba(39, 174, 96, 0.1);
  color: #27ae60;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid rgba(39, 174, 96, 0.2);
  text-align: center;
  margin-bottom: 20px;
}
.form-success-msg i {
  font-size: 32px;
  margin-bottom: 10px;
  display: block;
}
.form-success-msg h4 {
  margin-bottom: 5px;
  font-size: 18px;
  color: #219653;
}
.form-success-msg p {
  margin: 0;
  font-size: 14px;
}
.form-error-msg {
  display: none;
  background: rgba(235, 87, 87, 0.1);
  color: #eb5757;
  padding: 15px;
  border-radius: 8px;
  border: 1px solid rgba(235, 87, 87, 0.2);
  margin-top: 15px;
  font-size: 14px;
}

.banner-let-agreed {
  position: absolute;
  bottom: 40px; /* Shifted up to cover the number plate */
  left: 0;
  width: 100%;
  transform: none;
  background-color: rgba(220, 38, 38, 0.95);
  color: white;
  text-align: center;
  padding: 10px 0;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 4px;
  z-index: 10;
  box-shadow: 0 -4px 15px rgba(0,0,0,0.4);
  border-top: 2px solid rgba(255,255,255,0.4);
  border-bottom: none;
}
