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

:root {
  --primary-color: #4f46e5;
  --primary-dark: #4338ca;
  --primary-light: #6366f1;
  --secondary-color: #1e293b;
  --accent-color: #0ea5e9;
  --text-primary: #1e293b;
  --text-secondary: #475569;
  --text-light: #64748b;
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-light: #f1f5f9;
  --border-color: #e2e8f0;
  --success-color: #10b981;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.12);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --font-family:
    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  --transition: all 0.35s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

h1 {
  font-size: 2.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

h2 {
  font-size: 2.25rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

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

a:hover {
  color: var(--primary-dark);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.btn-primary {
  background-color: var(--primary-color);
  color: #ffffff !important;
  border-color: var(--primary-color);
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.35);
  font-weight: 800 !important;
  letter-spacing: 0.03em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(79, 70, 229, 0.45);
  color: #ffffff !important;
}

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

.btn-outline:hover {
  background-color: var(--primary-color);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.25);
}

.btn-large {
  padding: 18px 40px;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.btn-full {
  width: 100%;
}

/* Navigation */
.nav {
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 1000;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
}

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

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav-links a {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.1rem;
    position: relative;
}

.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-links a:not(.btn):hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--primary-color);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background-color: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  background: linear-gradient(
    135deg,
    var(--bg-primary) 0%,
    var(--bg-light) 100%
  );
  padding: 140px 0 100px;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--bg-light) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0.6;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--bg-secondary) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0.5;
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
}

.hero-text {
  color: var(--text-primary);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-light)
  );
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.hero-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  background-color: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 8px #22c55e;
}

.hero-title {
  font-size: 4rem;
  color: var(--text-primary);
  margin-bottom: 1.75rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.hero-title span {
  color: var(--primary-color);
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-light)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.35rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  max-width: 600px;
  line-height: 1.75;
  font-weight: 400;
}

.hero-cta {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border-color);
}

.hero-stat {
  text-align: left;
}

.hero-stat-value {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 8px rgba(79, 70, 229, 0.15);
}

.hero-stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-inner {
  width: 100%;
  height: 500px;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-light) 100%
  );
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(79, 70, 229, 0.3);
}

.hero-image-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.3;
}

.hero-icon {
  width: 180px;
  height: 180px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 20px 40px rgba(90, 110, 124, 0.3);
}

.hero-icon svg {
  width: 90px;
  height: 90px;
  color: var(--primary-color);
  filter: drop-shadow(0 4px 12px rgba(79, 70, 229, 0.3));
}

.hero-floating-card {
  position: absolute;
  background: white;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 2;
}

.hero-floating-card.top {
  top: 10%;
  right: -20px;
}

.hero-floating-card.bottom {
  bottom: 15%;
  left: -20px;
}

.hero-floating-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--success-color), #34d399);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.hero-floating-card h4 {
  color: var(--text-primary);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.hero-floating-card p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin-bottom: 0;
}

.form-header {
  text-align: center;
  margin-bottom: 1.75rem;
}

.form-header h3 {
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.form-header p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.9rem;
  letter-spacing: 0.01em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition);
  background-color: var(--bg-primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.15);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  margin-top: 0.25rem;
  width: auto;
  accent-color: var(--primary-color);
}

.checkbox-label span {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.form-disclaimer {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 1rem;
}

/* Section Styles */
section {
  padding: 100px 0;
}

/* Form Section */
.form-section {
  background-color: var(--bg-light);
  padding: 120px 0;
}

.form-wrapper {
  display: grid;
  grid-template-columns: 1fr 0.6fr;
  gap: 4rem;
  align-items: start;
}

.form-content {
  background: white;
  padding: 3rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-color);
}

.form-content .form-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.form-content .form-header h2 {
  color: var(--text-primary);
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.form-content .form-header p {
  color: var(--text-secondary);
  font-size: 1rem;
}

.hero-form {
  margin: 0;
}

.form-trust {
  background: linear-gradient(
    135deg,
    rgba(79, 70, 229, 0.12),
    rgba(99, 102, 241, 0.12)
  );
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  color: var(--text-primary);
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(79, 70, 229, 0.2);
}

.form-trust h3 {
  color: var(--text-primary);
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.form-trust ul {
  list-style: none;
  padding: 0;
  margin-bottom: auto;
}

.form-trust li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.form-trust li svg {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--primary-color);
}

.form-trust-cta {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(79, 70, 229, 0.2);
}

.form-trust-cta p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-color);
  font-size: 1.25rem;
  font-weight: 800;
  text-decoration: none;
  transition: var(--transition);
}

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

.phone-link:hover {
  color: rgba(255, 255, 255, 0.8);
}

.section-header {
  text-align: center;
  margin-bottom: 4.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  color: var(--secondary-color);
  margin-bottom: 1rem;
  font-size: 2.5rem;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
}

/* Benefits Section */
.benefits {
  background-color: var(--bg-secondary);
  position: relative;
}

.benefits::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--border-color),
    transparent
  );
}

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

.benefit-card {
  background: white;
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--primary-light)
  );
  transform: scaleX(0);
  transition: transform 0.35s ease;
  box-shadow: 0 2px 8px rgba(79, 70, 229, 0.4);
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

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

.benefit-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    rgba(79, 70, 229, 0.12),
    rgba(99, 102, 241, 0.12)
  );
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(79, 70, 229, 0.2);
}

.benefit-card h3 {
  color: var(--secondary-color);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.benefit-card p {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* How It Works */
.how-it-works {
  background-color: white;
}

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

.step-card {
  background: var(--bg-secondary);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.step-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary-color);
}

.step-number {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-light)
  );
  color: #ffffff;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 800;
  margin: 0 auto 1.75rem;
  box-shadow: 0 4px 15px rgba(79, 70, 229, 0.35);
}

.step-card h3 {
  color: var(--secondary-color);
  margin-bottom: 1rem;
  font-size: 1.35rem;
}

.step-card p {
  color: var(--text-secondary);
  margin-bottom: 1.75rem;
  line-height: 1.7;
}

.step-details {
  text-align: left;
  margin-bottom: 1.75rem;
  padding: 1.25rem;
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

.step-details p {
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.step-details ul {
  list-style: none;
  padding-left: 0;
}

.step-details li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.625rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

.step-details li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background-color: var(--primary-color);
  border-radius: 50%;
}

.step-highlight {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 0.9rem;
  background: linear-gradient(
    135deg,
    rgba(79, 70, 229, 0.12),
    rgba(99, 102, 241, 0.12)
  );
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  display: inline-block;
}

/* Property Types */
.property-types {
  background-color: var(--bg-light);
}

.property-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.75rem;
}

.property-card {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--primary-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.property-card:hover {
  box-shadow: var(--shadow-lg);
  border-left-color: var(--primary-light);
  transform: translateX(8px);
}

.property-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.04), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.property-card:hover::before {
  opacity: 1;
}

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

.property-card h3 {
  color: var(--secondary-color);
  margin-bottom: 0.75rem;
  font-size: 1.35rem;
  font-weight: 700;
}

.property-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Service Areas */
.service-areas {
  background-color: white;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 1.75rem;
  margin-bottom: 3.5rem;
}

.area-card {
  background: linear-gradient(135deg, var(--bg-secondary), var(--bg-light));
  padding: 2rem;
  border-radius: var(--radius-lg);
  transition: var(--transition);
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.area-card::before {
  content: "📍";
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1.5rem;
  opacity: 0.5;
}

.area-card:hover {
  background: white;
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.area-card h3 {
  color: var(--secondary-color);
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  padding-right: 2rem;
}

.area-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.cta-center {
  text-align: center;
}

.areas-cta {
  color: var(--text-secondary);
  margin-bottom: 1.75rem;
  font-size: 1.1rem;
}

/* Testimonials */
.testimonials {
  background: linear-gradient(
    180deg,
    var(--bg-secondary) 0%,
    var(--bg-light) 100%
  );
}

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

.testimonial-card {
  background: white;
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  position: relative;
  border: 1px solid var(--border-color);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-size: 4rem;
  color: rgba(79, 70, 229, 0.12);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-stars {
  color: var(--accent-color);
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  letter-spacing: 0.1em;
}

.testimonial-text {
  color: var(--text-primary);
  font-style: italic;
  margin-bottom: 1.75rem;
  font-size: 1.05rem;
  line-height: 1.8;
  padding-left: 2rem;
}

.testimonial-author {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* FAQ Section */
.faq {
  background-color: white;
}

.faq-container {
  max-width: 850px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-color);
  transition: background-color 0.3s ease;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item:hover {
  background-color: var(--bg-secondary);
}

.faq-question {
  width: 100%;
  padding: 1.75rem 0;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-question span:first-child {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--secondary-color);
  flex: 1;
  padding-right: 1rem;
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--primary-color);
  transition: var(--transition);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 600px;
  padding-bottom: 1.75rem;
}

.faq-answer p {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 1rem;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, #7c3aed 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(
      circle at 20% 80%,
      rgba(255, 255, 255, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 255, 255, 0.08) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.cta-section h2 {
  color: white;
  font-size: 2.75rem;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.35rem;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cta-buttons .btn-primary {
  background-color: #ffffff;
  color: var(--primary-color);
  border-color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  font-weight: 800;
  letter-spacing: 0.03em;
}

.cta-buttons .btn-primary:hover {
  background-color: var(--bg-light);
  border-color: var(--bg-light);
  transform: translateY(-3px);
}

.cta-buttons .btn-outline {
  border-color: #ffffff;
  color: #ffffff;
  background-color: transparent;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.cta-buttons .btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: #ffffff;
}

.cta-buttons .btn-primary:hover {
  background-color: var(--bg-light);
  border-color: var(--bg-light);
  transform: translateY(-3px);
}

.cta-buttons .btn-outline {
  border-color: #ffffff;
  color: #ffffff;
  background-color: transparent;
}

.cta-buttons .btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: #ffffff;
}

/* Contact Section */
.contact-section {
  background-color: var(--bg-secondary);
}

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

.contact-info h2 {
  color: var(--secondary-color);
  margin-bottom: 0.75rem;
  font-size: 2.25rem;
}

.contact-subtitle {
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  font-size: 1.15rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.contact-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.contact-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(
    135deg,
    rgba(79, 70, 229, 0.12),
    rgba(99, 102, 241, 0.12)
  );
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  border: 1px solid rgba(79, 70, 229, 0.2);
}

.contact-item h3 {
  color: var(--secondary-color);
  font-size: 1.1rem;
  margin-bottom: 0.375rem;
  font-weight: 700;
}

.contact-item a,
.contact-item p {
  color: var(--text-secondary);
  font-size: 1rem;
}

.contact-item a:hover {
  color: var(--primary-color);
}

.contact-form {
  background: white;
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

/* Footer */
.footer {
  background-color: var(--secondary-color);
  color: white;
  padding: 5rem 0 2.5rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-section h3 {
  color: white;
  margin-bottom: 1.75rem;
  font-size: 1.15rem;
  font-weight: 700;
}

.footer-logo img {
  max-height: 55px;
  margin-bottom: 1.25rem;
}

.footer-logo p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin-bottom: 1.75rem;
  line-height: 1.7;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-contact a {
  color: white;
  font-weight: 600;
  transition: var(--transition);
  font-size: 1rem;
}

.footer-contact a:hover {
  color: var(--primary-light);
}

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

.footer-links li {
  margin-bottom: 0.875rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: white;
}

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.social-link {
  width: 44px;
  height: 44px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
  border-color: var(--primary-color);
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.footer-bottom {
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.footer-legal {
  display: flex;
  gap: 2.5rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-legal a:hover {
  color: white;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(4px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: white;
  padding: 3.5rem;
  border-radius: var(--radius-xl);
  max-width: 520px;
  width: 100%;
  text-align: center;
  position: relative;
  animation: modalSlideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

@keyframes modalSlideIn {
  from {
    transform: translateY(-30px) scale(0.95);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  font-size: 1.75rem;
  cursor: pointer;
  color: var(--text-secondary);
  line-height: 1;
  padding: 0.5rem;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.modal-close:hover {
  background-color: var(--bg-light);
  color: var(--text-primary);
}

.modal-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, var(--success-color), #34d399);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.75rem;
  margin: 0 auto 2rem;
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
}

.modal-content h3 {
  color: var(--secondary-color);
  margin-bottom: 1rem;
  font-size: 2rem;
}

.modal-content p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-size: 1.15rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 3.5rem;
    text-align: center;
  }

  .hero-text {
    align-items: center;
    display: flex;
    flex-direction: column;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-image {
    display: none;
  }

  .form-wrapper {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

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

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }

  h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    gap: 1.25rem;
    border-top: 1px solid var(--border-color);
  }

  .nav-links.active {
    display: flex;
  }

  .mobile-menu-btn {
    display: flex;
  }

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

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

  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .hero {
    padding: 80px 0 60px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .section {
    padding: 80px 0;
  }

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

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

  .benefits-grid,
  .steps-container,
  .property-grid,
  .areas-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .cta-section h2 {
    font-size: 2rem;
  }

  .cta-section p {
    font-size: 1.125rem;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .btn {
    width: 100%;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-contact {
    align-items: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal {
    flex-direction: column;
    gap: 0.625rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .hero {
    padding: 60px 0 40px;
  }

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

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

  .hero-stats {
    gap: 1.5rem;
  }

  .hero-stat-value {
    font-size: 2rem;
  }

  .form-content {
    padding: 2rem;
  }

  .form-trust {
    padding: 2rem;
  }

  .modal-content {
    padding: 2.5rem 1.75rem;
  }

  .contact-form {
    padding: 2rem;
  }

  section {
    padding: 60px 0;
  }

  .form-section {
    padding: 60px 0;
  }
}

