/* ==========================================================================
   SC Fremont Website Styles
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Josefin+Sans:wght@400;500;600;700;800&display=swap');

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

:root {
  /* Colors */
  --primary-color: #00a9df;
  --primary-hover: #0090be;
  --primary-light: #e0f5fc;
  --secondary-color: #84b641;
  --secondary-hover: #6f9a36;
  --accent-dark: #172c59;

  --text-dark: #111212;
  --text-gray: #555555;
  --text-light: #808080;

  --border-color: #e2e8f0;
  --bg-light: #f0f4f5;
  --bg-white: #ffffff;
  --bg-dark: #172c59;

  --success: #84b641;
  --warning: #f59e0b;
  --error: #ef4444;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);

  /* Spacing */
  --container-width: 1200px;
  --section-padding: 4rem 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--bg-white);
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Typography
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Josefin Sans', 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-dark);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p { margin-bottom: 1rem; }

.large-text {
  font-size: 1.25rem;
  line-height: 1.7;
}

/* Header
   ========================================================================== */
.site-header {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-color);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo img {
  height: 45px;
  width: auto;
}

.logo-text {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #172c59;
}

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

.main-nav a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
  padding: 0.5rem 0;
}

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

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-dark);
}

/* Hero Sections
   ========================================================================== */
.hero {
  background: linear-gradient(135deg, var(--accent-dark) 0%, var(--primary-color) 100%);
  color: white;
  padding: 5rem 0;
  text-align: center;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  color: white;
  font-size: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.page-hero {
  background: linear-gradient(to bottom, var(--primary-light), var(--bg-white));
  padding: 3rem 0;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

.page-hero h1 {
  margin-bottom: 1rem;
}

/* Buttons
   ========================================================================== */
.btn {
  display: inline-block;
  padding: 0.875rem 1.75rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
  text-decoration: none;
}

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

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

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

.btn-lg {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.btn:active {
  transform: translateY(0);
}

/* Services Overview
   ========================================================================== */
.services-overview {
  padding: var(--section-padding);
  background: var(--bg-light);
}

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

.section-header h2 {
  margin-bottom: 1rem;
}

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

.service-card {
  background: var(--bg-white);
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-md);
  transition: transform 0.2s, box-shadow 0.2s;
  border-top: 4px solid var(--primary-color);
}

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

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

.service-card h3 {
  margin-bottom: 1rem;
}

.service-features {
  list-style: none;
  margin: 1.5rem 0;
}

.service-features li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-gray);
}

.service-features li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
}

.service-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}

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

/* Value Proposition
   ========================================================================== */
.value-prop {
  padding: var(--section-padding);
}

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

.value-item h4 {
  color: var(--accent-dark);
  margin-bottom: 0.5rem;
}

/* Stats Section
   ========================================================================== */
.stats-section {
  padding: var(--section-padding);
  background: linear-gradient(135deg, var(--accent-dark) 0%, var(--primary-color) 100%);
  color: white;
  text-align: center;
}

.stats-section h2 {
  color: white;
  margin-bottom: 3rem;
}

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

.stat-item {
  padding: 1.5rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  opacity: 0.9;
}

/* CTA Section
   ========================================================================== */
.cta-section {
  padding: var(--section-padding);
  background: var(--bg-light);
  text-align: center;
}

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

.cta-content h2 {
  margin-bottom: 1rem;
}

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

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

/* Content Sections
   ========================================================================== */
.content-section {
  padding: var(--section-padding);
}

.section-intro {
  font-size: 1.125rem;
  color: var(--text-gray);
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
}

/* Feature Grid
   ========================================================================== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.feature-box {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border-color);
}

.feature-box h3 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.feature-box ul {
  list-style: none;
}

.feature-box ul li {
  padding: 0.5rem 0;
  color: var(--text-gray);
}

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

.property-type-card {
  background: var(--bg-white);
  padding: 2.5rem;
  border-radius: 1rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow);
}

.property-type-card h3 {
  color: var(--accent-dark);
  margin-bottom: 1rem;
}

.type-features {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--primary-light);
  color: var(--primary-color);
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
}

/* Pricing
   ========================================================================== */
.pricing-section {
  padding: var(--section-padding);
}

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

.pricing-card {
  background: var(--bg-white);
  border: 2px solid var(--border-color);
  border-radius: 1rem;
  padding: 2.5rem;
  text-align: center;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}

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

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

.featured-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-color);
  color: white;
  padding: 0.375rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-color);
  margin: 1rem 0;
}

.price-note {
  color: var(--text-gray);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin: 2rem 0;
}

.pricing-features li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-footnote {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-top: 1rem;
  font-style: italic;
}

.pricing-cta {
  text-align: center;
  margin-top: 3rem;
}

/* Highlight Banner
   ========================================================================== */
.highlight-banner {
  background: linear-gradient(135deg, var(--accent-dark), var(--primary-color));
  color: white;
  padding: 3rem 0;
}

.banner-content {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.banner-stat {
  text-align: center;
  min-width: 200px;
}

.big-number {
  display: block;
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
}

.stat-text {
  display: block;
  font-size: 1.25rem;
  margin-top: 0.5rem;
  opacity: 0.9;
}

.banner-text h3 {
  color: white;
  margin-bottom: 0.75rem;
}

.banner-text p {
  opacity: 0.95;
  line-height: 1.7;
}

/* Investment Cards
   ========================================================================== */
.investment-types {
  padding: var(--section-padding);
  background: var(--bg-light);
}

.investment-card {
  background: var(--bg-white);
  border-radius: 1rem;
  padding: 2.5rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow);
}

.investment-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.investment-badge {
  background: var(--success);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.investment-details {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
  padding: 2rem;
  background: var(--bg-light);
  border-radius: 0.75rem;
}

.detail-item strong {
  display: block;
  color: var(--text-gray);
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.tenant-examples {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

/* Investment Benefits
   ========================================================================== */
.investment-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.benefit-item {
  text-align: center;
}

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

/* Process Steps
   ========================================================================== */
.process-section {
  padding: var(--section-padding);
}

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

.process-step {
  text-align: center;
  padding: 2rem;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.process-step h3 {
  margin-bottom: 1rem;
}

/* Requirements
   ========================================================================== */
.requirements-section {
  padding: var(--section-padding);
  background: var(--bg-light);
}

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

.req-card {
  background: var(--bg-white);
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: var(--shadow);
}

.req-card h3 {
  color: var(--accent-dark);
  margin-bottom: 1rem;
}

.req-card ul {
  margin-top: 1rem;
  padding-left: 1.5rem;
}

.req-card ul li {
  margin-bottom: 0.75rem;
  color: var(--text-gray);
}

.req-card .note {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
  font-size: 0.875rem;
  color: var(--text-gray);
  font-style: italic;
}

/* Disclaimer
   ========================================================================== */
.disclaimer-section {
  padding: 2rem 0 4rem;
}

.disclaimer-box {
  background: var(--bg-light);
  border-left: 4px solid var(--warning);
  padding: 2rem;
  border-radius: 0.5rem;
}

.disclaimer-box h4 {
  color: var(--warning);
  margin-bottom: 1rem;
}

.disclaimer-box p {
  font-size: 0.875rem;
  color: var(--text-gray);
  line-height: 1.7;
}

/* About Page
   ========================================================================== */
.mission-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 3rem;
}

.value-grid-about {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.value-card {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  border-top: 3px solid var(--primary-color);
}

.value-card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

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

.story-content {
  max-width: 900px;
  margin: 0 auto;
}

.story-content p {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* Team
   ========================================================================== */
.team-section {
  padding: var(--section-padding);
}

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

.team-member {
  text-align: center;
}

.member-photo {
  width: 150px;
  height: 150px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  margin: 0 auto 1.5rem;
}

.team-member h3 {
  margin-bottom: 0.5rem;
}

.member-title {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.team-member p {
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.6;
}

/* Contact Page
   ========================================================================== */
.contact-options {
  padding: var(--section-padding);
  background: var(--bg-light);
}

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

.option-card {
  background: var(--bg-white);
  padding: 2.5rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}

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

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

.option-card h3 {
  margin-bottom: 1rem;
}

.option-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
}

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

/* Forms
   ========================================================================== */
.form-section {
  padding: var(--section-padding);
}

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

.form-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}

.form-info h2 {
  margin-bottom: 1rem;
}

.info-list {
  margin-top: 2rem;
}

.info-item {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-color);
}

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

.info-note {
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--primary-light);
  border-radius: 0.5rem;
}

.form-container {
  background: var(--bg-white);
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-md);
}

form label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  font-size: 0.95rem;
}

form input,
form select,
form textarea {
  width: 100%;
  padding: 0.875rem;
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  font-size: 1rem;
  font-family: inherit;
  margin-bottom: 1.25rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

form input:focus,
form select:focus,
form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 169, 223, 0.15);
}

form textarea {
  resize: vertical;
  min-height: 100px;
}

form button[type="submit"] {
  width: 100%;
  margin-top: 0.5rem;
}

.form-disclaimer {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
  line-height: 1.5;
}

/* Footer
   ========================================================================== */
.site-footer {
  background: var(--bg-dark);
  color: white;
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

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

.footer-logo span {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
}

.footer-col h4 {
  font-size: 1.125rem;
  margin-bottom: 1.25rem;
  color: white;
}

.footer-col p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.footer-contact {
  margin-top: 1.5rem;
}

.footer-contact p {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

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

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

.footer-col a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  color: var(--text-light);
  font-size: 0.875rem;
}

/* Responsive Design
   ========================================================================== */
@media (max-width: 1024px) {
  .services-grid,
  .value-grid,
  .feature-grid,
  .pricing-grid,
  .investment-details,
  .investment-benefits,
  .process-steps,
  .requirements-grid,
  .options-grid,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.25rem; }

  .site-header .container {
    flex-wrap: wrap;
  }

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

  .main-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 0;
    padding-top: 1rem;
  }

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

  .main-nav a {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
  }

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

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

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

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

  .services-grid,
  .value-grid,
  .feature-grid,
  .pricing-grid,
  .investment-details,
  .investment-benefits,
  .process-steps,
  .requirements-grid,
  .options-grid,
  .team-grid,
  .stats-grid,
  .value-grid-about,
  .footer-content {
    grid-template-columns: 1fr;
  }

  .banner-content {
    flex-direction: column;
    text-align: center;
  }

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

@media (max-width: 480px) {
  :root {
    --section-padding: 2.5rem 0;
  }

  .container {
    padding: 0 1rem;
  }

  .hero {
    padding: 3rem 0;
  }

  .service-card,
  .form-container,
  .option-card,
  .property-type-card,
  .investment-card,
  .req-card {
    padding: 1.5rem;
  }

  .big-number {
    font-size: 3rem;
  }
}

/* Utilities
   ========================================================================== */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
