/* Accessible Housing Audit Service Template - Main Styles */

:root {
  /* Primary Color Palette - Harmonious Pastels */
  --primary-sage: #9FB8AD;
  --primary-cream: #F5F3E7;
  --primary-soft-blue: #A8DADC;
  --primary-warm-beige: #E9C46A;
  --primary-coral: #F4A261;
  
  /* Light & Dark Shades */
  --sage-light: #B8CFC2;
  --sage-dark: #7A9B89;
  --cream-light: #FEFCF6;
  --cream-dark: #E8E4D0;
  --soft-blue-light: #C5E8EA;
  --soft-blue-dark: #7BC5C9;
  --warm-beige-light: #F0D488;
  --warm-beige-dark: #D4A843;
  --coral-light: #F7B583;
  --coral-dark: #E8894A;
  
  /* Additional colors */
  --text-dark: #2D3436;
  --text-light: #636E72;
  --white: #FFFFFF;
  --shadow: rgba(45, 52, 54, 0.1);
  --shadow-hover: rgba(45, 52, 54, 0.15);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
}

/* Typography */
h1 { font-size: 2.5rem; font-weight: 700; }
h2 { font-size: 2rem; font-weight: 600; }
h3 { font-size: 1.5rem; font-weight: 600; }
h4 { font-size: 1.25rem; font-weight: 500; }
p { font-size: 1rem; color: var(--text-light); }

/* Header */
header {
  background: linear-gradient(135deg, var(--primary-sage), var(--sage-light));
  box-shadow: 0 2px 10px var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-brand {
  font-weight: 700;
  color: var(--white) !important;
  font-size: 1.5rem;
}

.navbar-nav .nav-link {
  color: var(--white) !important;
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-cream) !important;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-soft-blue), var(--soft-blue-light));
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../EXC_images/hero-bg.webp') center/cover;
  opacity: 0.3;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.hero-subtitle {
  color: var(--text-light);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.hero-desc {
  font-size: 1rem;
  margin-bottom: 2rem;
}

/* Decorative Shapes */
.shape-blob {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--primary-coral), var(--coral-light));
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.blob-1 { width: 200px; height: 200px; top: 10%; right: 10%; }
.blob-2 { width: 150px; height: 150px; bottom: 20%; left: 5%; animation-delay: -3s; }

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/* Section Styling */
section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.section-subtitle {
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.section-desc {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* About Section */
.about-section {
  background: var(--primary-cream);
}

.about-feature {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px var(--shadow);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 2rem;
}

.about-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px var(--shadow-hover);
}

.about-feature i {
  font-size: 3rem;
  color: var(--primary-sage);
  margin-bottom: 1rem;
}

/* Services Section */
.services-section {
  background: linear-gradient(135deg, var(--primary-cream), var(--cream-light));
}

.service-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 15px var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 2rem;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px var(--shadow-hover);
}

.service-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 1.5rem;
  object-fit: cover;
}

.service-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-coral);
  margin: 1rem 0;
}

/* Features Section */
.features-section {
  background: var(--white);
}

.feature-item {
  background: linear-gradient(135deg, var(--primary-soft-blue), var(--soft-blue-light));
  color: var(--white);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: scale(1.05);
}

.feature-item i {
  font-size: 3rem;
  margin-bottom: 1rem;
}

/* Price Plan Section */
.priceplan-section {
  background: linear-gradient(135deg, var(--primary-warm-beige), var(--warm-beige-light));
}

.price-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 5px 15px var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 2rem;
}

.price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px var(--shadow-hover);
}

.price-amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-coral);
  margin: 1rem 0;
}

.price-features {
  list-style: none;
  padding: 0;
}

.price-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--primary-cream);
}

.price-features li:last-child {
  border-bottom: none;
}

/* Team Section */
.team-section {
  background: var(--primary-cream);
}

.team-member {
  text-align: center;
  margin-bottom: 2rem;
}

.team-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-bottom: 1rem;
  object-fit: cover;
  border: 5px solid var(--primary-sage);
}

/* Reviews Section */
.reviews-section {
  background: var(--white);
}

.review-card {
  background: linear-gradient(135deg, var(--primary-soft-blue), var(--soft-blue-light));
  color: var(--white);
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 2rem;
  text-align: center;
}

.review-text {
  font-style: italic;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.review-author {
  font-weight: 600;
}

/* Core Info Section */
.coreinfo-section {
  background: linear-gradient(135deg, var(--primary-coral), var(--coral-light));
  color: var(--white);
}

.coreinfo-item {
  text-align: center;
  margin-bottom: 2rem;
  padding: 1.5rem;
}

.coreinfo-item i {
  font-size: 3rem;
  margin-bottom: 1rem;
}

/* Contact Form */
.contact-section {
  background: var(--primary-cream);
}

.contact-form {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px var(--shadow);
}

.form-control {
  border: 2px solid var(--primary-sage);
  border-radius: 10px;
  padding: 0.75rem;
  margin-bottom: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-coral);
  box-shadow: 0 0 0 0.2rem rgba(244, 162, 97, 0.25);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-sage), var(--sage-dark));
  border: none;
  border-radius: 10px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--sage-dark), var(--primary-sage));
  transform: translateY(-2px);
}

/* Blog Section */
.blog-section {
  background: var(--white);
}

.blog-card {
  background: var(--primary-cream);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px var(--shadow-hover);
}

/* FAQ Section */
.faq-section {
  background: var(--primary-cream);
}

.faq-accordion .card {
  border: none;
  border-radius: 10px !important;
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px var(--shadow);
}

.faq-accordion .card-header {
  background: linear-gradient(135deg, var(--primary-sage), var(--sage-light));
  border-radius: 10px !important;
  cursor: pointer;
}

.faq-accordion .card-header h5 {
  color: var(--white);
  margin: 0;
}

.faq-accordion .card-body {
  background: var(--white);
  border-radius: 0 0 10px 10px;
}

/* Gallery Section */
.gallery-section {
  background: var(--white);
  padding: 5rem 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 5px 15px var(--shadow);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--text-dark), #1A1E1F);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer-content {
  margin-bottom: 2rem;
}

.footer-section h5 {
  color: var(--primary-sage);
  margin-bottom: 1rem;
}

.footer-section a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--primary-sage);
}

.footer-bottom {
  border-top: 1px solid #444;
  padding-top: 1rem;
  text-align: center;
}

/* Breadcrumb */
.breadcrumb-section {
  background: var(--primary-cream);
  padding: 2rem 0;
}

.breadcrumb-img {
  text-align: center;
}

.breadcrumb-img img {
  max-width: 100px;
  height: auto;
  border-radius: 10px;
}

/* Utility Classes */
.text-primary { color: var(--primary-sage) !important; }
.bg-primary { background-color: var(--primary-sage) !important; }
.border-primary { border-color: var(--primary-sage) !important; }

/* Additional Page Styles */
.additional-section {
  padding: 4rem 0;
  background: var(--white);
}

.additional-section:nth-child(even) {
  background: var(--primary-cream);
}

.additional-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.additional-item {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px var(--shadow);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.additional-item:hover {
  transform: translateY(-5px);
}

/* Space page styling */
#space {
  min-height: 70vh;
  background: linear-gradient(135deg, var(--primary-soft-blue), var(--soft-blue-light));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

#space::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../EXC_images/space-bg.webp') center/cover;
  opacity: 0.3;
} 