/* NEO Rental Agent - Main Stylesheet */

:root {
  --navy: #1a2a4a;
  --navy-dark: #0f1a2e;
  --navy-light: #2a3f6a;
  --orange: #F7931A;
  --orange-dark: #d97e15;
  --cream: #faf9f7;
  --white: #ffffff;
  --gray-100: #f5f5f5;
  --gray-200: #e5e5e5;
  --gray-400: #a3a3a3;
  --gray-600: #525252;
  --gray-800: #262626;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--gray-800);
  line-height: 1.6;
  background: var(--cream);
}

h1, h2, h3, h4 {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  line-height: 1.2;
}

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

img {
  max-width: 100%;
  height: auto;
}

/* Skip Link for Accessibility - Hidden offscreen until focused */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 10000;
}

.skip-link:focus {
  position: fixed;
  top: 0;
  left: 0;
  width: auto;
  height: auto;
  overflow: visible;
  background: var(--navy);
  color: white;
  padding: 12px 24px;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

header.scrolled {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

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

.logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  color: var(--navy);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--orange);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
}

nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

nav a {
  text-decoration: none;
  color: var(--gray-600);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}

nav a:hover {
  color: var(--navy);
}

nav a.active {
  color: var(--navy);
  font-weight: 600;
}

.nav-cta {
  background: var(--orange);
  color: white !important;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  transition: background 0.2s !important;
}

.nav-cta:hover {
  background: var(--orange-dark) !important;
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
  transition: 0.3s;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 1rem 2rem 2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  z-index: 999;
}

.mobile-nav.active {
  display: block;
}

.mobile-nav a {
  display: block;
  padding: 1rem 0;
  color: var(--gray-600);
  font-weight: 500;
  border-bottom: 1px solid var(--gray-100);
}

.mobile-nav a:hover {
  color: var(--navy);
}

.mobile-nav .nav-cta {
  display: inline-block;
  margin-top: 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  font-size: 1rem;
  border: none;
  cursor: pointer;
}

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

.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.3);
}

.btn-secondary:hover {
  border-color: white;
  background: rgba(255,255,255,0.1);
}

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

.btn-outline:hover {
  background: var(--navy);
  color: white;
}

.btn-white {
  background: white;
  color: var(--navy);
}

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

.btn-navy {
  background: var(--navy);
  color: white;
}

.btn-navy:hover {
  background: var(--navy-dark);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1.25rem 2.5rem;
  font-size: 1.1rem;
}

.btn-sm {
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
}

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

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="%23F7931A" stroke-width="0.5" opacity="0.1"/></svg>') repeat;
  opacity: 0.3;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text h1 {
  font-size: 3.5rem;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero-text h1 span {
  color: var(--orange);
}

.hero-text p {
  font-size: 1.25rem;
  color: var(--gray-200);
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.stat {
  text-align: left;
}

.stat-number {
  font-family: 'DM Serif Display', serif;
  font-size: 2.5rem;
  color: var(--orange);
}

.stat-label {
  color: var(--gray-400);
  font-size: 0.9rem;
}

.hero-visual {
  position: relative;
}

.hero-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  transform: rotate(2deg);
}

.hero-card h3 {
  color: var(--navy);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.hero-card-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--gray-100);
}

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

.hero-card-icon {
  width: 48px;
  height: 48px;
  background: var(--cream);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.hero-card-text h4 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  color: var(--navy);
  font-size: 1rem;
}

.hero-card-text p {
  color: var(--gray-600);
  font-size: 0.9rem;
  margin: 0;
}

/* Page Hero (smaller for inner pages) */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  padding: 8rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="%23F7931A" stroke-width="0.5" opacity="0.1"/></svg>') repeat;
  opacity: 0.2;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

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

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

/* Section Styles */
section {
  padding: 6rem 2rem;
}

.section-header {
  max-width: 700px;
  margin: 0 auto 4rem;
  text-align: center;
}

.section-tag {
  display: inline-block;
  background: var(--cream);
  color: var(--orange);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--navy);
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--gray-600);
  font-size: 1.1rem;
}

/* Services Grid */
.services {
  background: var(--white);
}

.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background: var(--cream);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--orange);
  box-shadow: 0 20px 40px rgba(247, 147, 26, 0.1);
}

.service-icon {
  width: 64px;
  height: 64px;
  background: var(--navy);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.service-card p {
  color: var(--gray-600);
  margin-bottom: 1rem;
}

.service-link {
  color: var(--orange);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.service-link:hover {
  gap: 0.75rem;
}

/* Why Us Section */
.why-us {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: '26';
  position: absolute;
  top: 50%;
  right: -5%;
  transform: translateY(-50%);
  font-family: 'DM Serif Display', serif;
  font-size: 40vw;
  color: var(--navy-light);
  opacity: 0.1;
  line-height: 1;
}

.why-us-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.why-us .section-header {
  text-align: left;
  margin-bottom: 3rem;
}

.why-us .section-tag {
  background: rgba(247, 147, 26, 0.2);
}

.why-us .section-header h2 {
  color: var(--white);
}

.why-us .section-header p {
  color: var(--gray-400);
}

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

.why-us-item {
  background: rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s;
}

.why-us-item:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--orange);
}

.why-us-item h3 {
  color: var(--white);
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.why-us-item p {
  color: var(--gray-400);
}

/* Service Area */
.service-area {
  background: var(--cream);
}

.service-area-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.area-map {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

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

.area-text h2 {
  font-size: 2.5rem;
  color: var(--navy);
  margin-bottom: 1rem;
}

.area-text p {
  color: var(--gray-600);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.area-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.area-city {
  background: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  color: var(--navy);
  border: 1px solid var(--gray-200);
}

/* CTA Section */
.cta {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  text-align: center;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta h2 {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.cta p {
  color: rgba(255,255,255,0.9);
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

/* Footer */
footer {
  background: var(--navy-dark);
  color: var(--gray-400);
  padding: 4rem 2rem 2rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand h3 {
  font-family: 'DM Serif Display', serif;
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.footer-brand p {
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.footer-column h4 {
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

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

.footer-column li {
  margin-bottom: 0.75rem;
}

.footer-column a {
  color: var(--gray-400);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-column a:hover {
  color: var(--orange);
}

.footer-bottom {
  max-width: 1200px;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}

/* Forms */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--gray-800);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--gray-200);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s;
}

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

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

.form-group .required {
  color: var(--orange);
}

/* Cards */
.card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

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

/* Team Cards */
.team-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--gray-100);
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--gray-400);
  overflow: hidden;
}

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

.team-card h3 {
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.team-card .role {
  color: var(--orange);
  font-weight: 500;
  margin-bottom: 1rem;
}

.team-card p {
  color: var(--gray-600);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.team-card a {
  color: var(--navy);
  font-weight: 500;
}

.team-card a:hover {
  color: var(--orange);
}

/* Lifecycle Cards */
.lifecycle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.lifecycle-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  position: relative;
  border: 2px solid var(--gray-100);
  transition: all 0.3s;
}

.lifecycle-card:hover {
  border-color: var(--orange);
  transform: translateY(-5px);
}

.lifecycle-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: var(--orange);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

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

.lifecycle-card h3 {
  color: var(--navy);
  margin-bottom: 1rem;
  font-size: 1.75rem;
}

.lifecycle-card ul {
  list-style: none;
  text-align: left;
}

.lifecycle-card li {
  padding: 0.5rem 0;
  color: var(--gray-600);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.lifecycle-card li::before {
  content: '✓';
  color: var(--orange);
  font-weight: bold;
}

/* Quick Links Grid */
.quick-links-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.quick-link-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  border: 2px solid var(--gray-100);
  transition: all 0.3s;
  text-decoration: none;
  color: inherit;
}

.quick-link-card:hover {
  border-color: var(--orange);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(247, 147, 26, 0.1);
}

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

.quick-link-card h3 {
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.quick-link-card p {
  color: var(--gray-600);
  font-size: 0.95rem;
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  background: none;
  border: none;
  text-align: left;
  font-family: inherit;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  background: var(--gray-100);
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--orange);
  transition: transform 0.3s;
}

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

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

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 1.5rem 1.5rem;
  color: var(--gray-600);
}

/* Two Column Layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Contact Info */
.contact-info {
  background: var(--navy);
  color: white;
  border-radius: 16px;
  padding: 2.5rem;
}

.contact-info h3 {
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

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

.contact-info-icon {
  font-size: 1.25rem;
}

.contact-info-text h4 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-info-text p,
.contact-info-text a {
  color: var(--gray-400);
}

.contact-info-text a:hover {
  color: var(--orange);
}

/* Hero Inner (for inner pages) */
.hero-inner {
  min-height: auto;
  padding: 10rem 2rem 6rem;
}

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

.hero-inner .hero-text p {
  margin: 0 auto 2rem;
}

.hero-inner .hero-buttons {
  justify-content: center;
}

/* Lifecycle Section */
.lifecycle {
  background: var(--cream);
}

.lifecycle-card.featured {
  background: var(--navy);
  border-color: var(--navy);
}

.lifecycle-card.featured h3 {
  color: var(--white);
}

.lifecycle-card.featured li {
  color: var(--gray-400);
}

.lifecycle-card.featured li::before {
  color: var(--orange);
}

.lifecycle-card .btn {
  margin-top: 1.5rem;
  width: 100%;
  justify-content: center;
}

/* Detailed Services List */
.detailed-services {
  background: var(--cream);
}

.services-list {
  max-width: 900px;
  margin: 0 auto;
}

.service-detail {
  display: flex;
  gap: 2rem;
  padding: 2.5rem;
  background: var(--white);
  border-radius: 16px;
  margin-bottom: 1.5rem;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.service-detail:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.service-detail-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.service-detail-content h3 {
  color: var(--navy);
  margin-bottom: 0.75rem;
  font-size: 1.5rem;
}

.service-detail-content p {
  color: var(--gray-600);
  margin-bottom: 1rem;
}

.service-detail-content ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.service-detail-content li {
  background: var(--cream);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  color: var(--gray-600);
}

/* Scale Section */
.scale-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  text-align: center;
}

.scale-content {
  max-width: 1000px;
  margin: 0 auto;
}

.scale-content h2 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.scale-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.scale-item {
  padding: 2rem;
}

.scale-number {
  font-family: 'DM Serif Display', serif;
  font-size: 5rem;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 1rem;
}

.scale-item p {
  color: var(--gray-400);
  font-size: 1.1rem;
}

.scale-cta-text {
  color: var(--gray-200);
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

/* Consultation Form */
.consultation-form {
  background: var(--white);
}

.form-container {
  max-width: 800px;
  margin: 0 auto;
}

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

.form-header h2 {
  color: var(--navy);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.form-header p {
  color: var(--gray-600);
  font-size: 1.1rem;
}

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

.form-group.full-width {
  grid-column: 1 / -1;
}

.landlord-form .btn {
  width: 100%;
  justify-content: center;
  padding: 1.25rem;
  font-size: 1.1rem;
}

.btn-large {
  padding: 1.25rem 2.5rem;
  font-size: 1.1rem;
}

/* CTA Buttons */
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Listings Section */
.listings-section {
  padding: 4rem 2rem;
  background: var(--white);
}

.listings-container {
  max-width: 1000px;
  margin: 0 auto;
}

.listings-placeholder {
  background: var(--cream);
  border-radius: 16px;
  padding: 4rem 2rem;
  text-align: center;
  border: 2px dashed var(--gray-200);
}

.placeholder-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

.listings-placeholder h2 {
  color: var(--navy);
  margin-bottom: 1rem;
}

.listings-placeholder p {
  color: var(--gray-600);
  max-width: 500px;
  margin: 0 auto 2rem;
}

/* How to Apply Steps */
.how-to-apply {
  background: var(--cream);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.step-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  position: relative;
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--orange);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  margin: 0 auto 1rem;
}

.step-card h3 {
  color: var(--navy);
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.step-card p {
  color: var(--gray-600);
  font-size: 0.95rem;
}

/* Requirements Section */
.requirements {
  background: var(--white);
}

.requirements-content {
  max-width: 1000px;
  margin: 0 auto;
}

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

.requirement-item {
  text-align: center;
  padding: 1.5rem;
}

.requirement-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.requirement-item h3 {
  color: var(--navy);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.requirement-item p {
  color: var(--gray-600);
  font-size: 0.9rem;
}

/* Tenant Resources */
.tenant-resources {
  background: var(--cream);
}

/* Tenant Quick Links */
.tenant-quick-links {
  background: var(--white);
}

/* FAQ Section */
.faq-section {
  background: var(--white);
}

/* Tenant Contact */
.tenant-contact {
  background: var(--cream);
}

.contact-content-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
}

.contact-card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.contact-card h3 {
  color: var(--navy);
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.contact-card p {
  color: var(--gray-600);
  font-size: 0.95rem;
}

.contact-card a {
  color: var(--orange);
  font-weight: 500;
}

.contact-card a:hover {
  text-decoration: underline;
}

/* Our Story Section */
.our-story {
  background: var(--white);
}

.story-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.story-text h2 {
  color: var(--navy);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.story-text p {
  color: var(--gray-600);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.story-stats {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.story-stat {
  background: var(--cream);
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
}

.story-stat-number {
  font-family: 'DM Serif Display', serif;
  font-size: 3.5rem;
  color: var(--orange);
  line-height: 1;
}

.story-stat-label {
  color: var(--gray-600);
  font-size: 0.95rem;
  margin-top: 0.5rem;
}

/* Team Section */
.team-section {
  background: var(--cream);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

/* Approach Section */
.approach-section {
  background: var(--white);
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.approach-item {
  text-align: center;
  padding: 2rem;
}

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

.approach-item h3 {
  color: var(--navy);
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.approach-item p {
  color: var(--gray-600);
  font-size: 0.95rem;
}

/* Area Counties */
.area-counties {
  margin-top: 2rem;
}

.area-counties h4 {
  color: var(--navy);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  margin: 1.5rem 0 0.75rem;
  font-size: 0.95rem;
}

.area-counties h4:first-child {
  margin-top: 0;
}

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

.contact-form-wrapper {
  background: var(--cream);
  border-radius: 16px;
  padding: 2.5rem;
}

.contact-form-wrapper h2 {
  color: var(--navy);
  margin-bottom: 0.5rem;
  font-size: 2rem;
}

.contact-form-wrapper > p {
  color: var(--gray-600);
  margin-bottom: 2rem;
}

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

.contact-form .btn {
  width: 100%;
  justify-content: center;
  margin-top: 0.5rem;
}

.contact-map {
  margin-top: 2rem;
  border-radius: 12px;
  overflow: hidden;
}

.contact-map iframe {
  width: 100%;
  height: 200px;
  border: none;
}

/* Tenant Notice */
.tenant-notice {
  background: var(--cream);
  text-align: center;
}

.notice-content {
  max-width: 700px;
  margin: 0 auto;
}

.notice-content h3 {
  color: var(--navy);
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.notice-content p {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
}

.notice-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.bg-white { background: var(--white); }
.bg-cream { background: var(--cream); }
.bg-navy { background: var(--navy); }

/* Mobile Responsive */
@media (max-width: 968px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

  .hero-text p {
    margin-left: auto;
    margin-right: auto;
  }

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

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

  .stat {
    text-align: center;
  }

  .hero-visual {
    display: none;
  }

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

  .services-grid {
    grid-template-columns: 1fr;
  }

  .why-us-grid {
    grid-template-columns: 1fr;
  }

  .service-area-content {
    grid-template-columns: 1fr;
  }

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

  .lifecycle-grid {
    grid-template-columns: 1fr;
  }

  .two-col {
    grid-template-columns: 1fr;
  }

  .quick-links-grid {
    grid-template-columns: 1fr;
  }

  .scale-grid {
    grid-template-columns: 1fr;
  }

  .service-detail {
    flex-direction: column;
    text-align: center;
  }

  .service-detail-content ul {
    justify-content: center;
  }

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

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

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

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

  .story-content {
    grid-template-columns: 1fr;
  }

  .story-stats {
    flex-direction: row;
    justify-content: center;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

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

  nav {
    display: none;
  }

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

@media (max-width: 600px) {
  .hero-text h1 {
    font-size: 2rem;
  }

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

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

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

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

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

  section {
    padding: 4rem 1rem;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .requirements-grid {
    grid-template-columns: 1fr;
  }

  .story-stats {
    flex-direction: column;
  }

  .approach-grid {
    grid-template-columns: 1fr;
  }

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

/* ===== FAQ PAGE STYLES ===== */
.faq-section {
  padding: 4rem 2rem;
  background: var(--light-bg);
}

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

.faq-category {
  margin-bottom: 3rem;
}

.faq-category h2 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--navy);
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--gold);
}

.faq-item {
  background: white;
  padding: 1.5rem 2rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.faq-item h3 {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.faq-item p {
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.faq-item ul {
  margin: 0.75rem 0;
  padding-left: 1.5rem;
}

.faq-item li {
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

/* ===== LOCATION PAGE STYLES ===== */
.location-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a5c 100%);
}

.location-content {
  padding: 4rem 2rem;
  background: var(--light-bg);
}

.location-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 3rem;
}

.location-main h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.location-main h3 {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  margin: 2rem 0 1rem;
}

.location-main p {
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.location-main ul {
  margin: 1rem 0 1.5rem;
  padding-left: 1.5rem;
}

.location-main li {
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.location-main li strong {
  color: var(--navy);
}

.location-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sidebar-box {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.sidebar-box h3 {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--gold);
}

.sidebar-box p {
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.sidebar-box a.btn {
  display: block;
  text-align: center;
  margin-top: 1rem;
}

.city-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.city-list li {
  padding: 0.4rem 0;
  color: var(--text);
  font-size: 0.95rem;
  border-bottom: 1px solid #eee;
}

.city-list li:last-child {
  border-bottom: none;
}

.city-list li a {
  color: var(--navy);
  text-decoration: none;
}

.city-list li a:hover {
  color: var(--gold);
}

/* Location page responsive */
@media (max-width: 900px) {
  .location-container {
    grid-template-columns: 1fr;
  }
  
  .location-sidebar {
    order: -1;
  }
}

@media (max-width: 600px) {
  .faq-item {
    padding: 1.25rem;
  }
  
  .faq-category h2 {
    font-size: 1.5rem;
  }
  
  .location-main h2 {
    font-size: 1.5rem;
  }
}
