/* Landlord Compliance Audit Service - Main Styles */

:root {
  /* Primary Color Palette - Harmonious Pastels */
  --primary-sage: #9CAF88;
  --primary-lavender: #B5A7B8;
  --primary-peach: #F4B5A4;
  --primary-cream: #F7E7CE;
  --primary-dusty-blue: #A4B8C4;
  
  /* Light Shades */
  --light-sage: #E8F0E3;
  --light-lavender: #F0ECF1;
  --light-peach: #FDF3F0;
  --light-cream: #FEFCF8;
  --light-dusty-blue: #F1F5F7;
  
  /* Dark Shades */
  --dark-sage: #5A6B4A;
  --dark-lavender: #6B5F6E;
  --dark-peach: #C4847A;
  --dark-cream: #C4B49A;
  --dark-dusty-blue: #6A7B87;
  
  /* Neutral Colors */
  --white: #FFFFFF;
  --light-gray: #F8F9FA;
  --medium-gray: #6C757D;
  --dark-gray: #212529;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-sage), var(--primary-lavender));
  --gradient-secondary: linear-gradient(135deg, var(--primary-peach), var(--primary-cream));
  --gradient-tertiary: linear-gradient(135deg, var(--primary-dusty-blue), var(--primary-sage));
  
  /* Typography */
  --font-size-base: 1rem;
  --line-height-base: 1.6;
  
  /* Shadows */
  --shadow-soft: 0 4px 20px rgba(156, 175, 136, 0.15);
  --shadow-medium: 0 8px 30px rgba(156, 175, 136, 0.2);
  --shadow-strong: 0 12px 40px rgba(156, 175, 136, 0.25);
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--dark-gray);
  background-color: var(--white);
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--dark-sage);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
  color: var(--medium-gray);
}

/* Header Styles */
header {
  background: var(--gradient-primary);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-soft);
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--white) !important;
}

.navbar-nav .nav-link {
  color: var(--white) !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--light-cream) !important;
  transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: var(--gradient-tertiary);
  color: var(--white);
  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('../TRA_images/hero-bg.webp') center/cover;
  opacity: 0.3;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-desc {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  opacity: 0.8;
}

/* Decorative Shapes */
.shape {
  position: absolute;
  border-radius: 50% 30% 70% 40%;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.shape-1 {
  width: 300px;
  height: 300px;
  background: var(--primary-peach);
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 200px;
  height: 200px;
  background: var(--primary-lavender);
  bottom: 20%;
  left: 15%;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

/* Section Styles */
.section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 2.5rem;
  color: var(--dark-sage);
}

.section-subtitle {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  color: var(--primary-lavender);
  font-weight: 500;
}

.section-desc {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 1.1rem;
  color: var(--medium-gray);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* About Section */
.about-section {
  background: var(--light-sage);
}

.about-feature {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--shadow-soft);
  margin-bottom: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-feature:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-medium);
}

.about-feature h4 {
  color: var(--dark-sage);
  margin-bottom: 1rem;
}

/* Services Section */
.services-section {
  background: var(--white);
}

.service-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--shadow-medium);
  transition: all 0.3s ease;
  height: 100%;
  border: 2px solid transparent;
  margin-bottom: 2rem;
}

.service-card:hover {
  transform: translateY(-15px);
  box-shadow: var(--shadow-strong);
  border-color: var(--primary-sage);
}

.service-card .card-img-top {
  border-radius: 15px;
  height: 200px;
  object-fit: cover;
  margin-bottom: 1.5rem;
}

.service-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-sage);
  margin-bottom: 1rem;
}

.service-features {
  list-style: none;
  padding: 0;
}

.service-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--light-gray);
  color: var(--medium-gray);
}

.service-features li:before {
  content: '✓';
  color: var(--primary-sage);
  font-weight: bold;
  margin-right: 0.5rem;
}

/* Features Section */
.features-section {
  background: var(--light-lavender);
}

.feature-item {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--shadow-soft);
  margin-bottom: 2rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: scale(1.05);
}

.feature-icon {
  font-size: 3rem;
  color: var(--primary-dusty-blue);
  margin-bottom: 1rem;
}

/* Price Plan Section */
.priceplan-section {
  background: var(--light-peach);
}

.price-card {
  background: var(--white);
  border-radius: 20px;
  padding: 3rem 2rem;
  box-shadow: var(--shadow-medium);
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-strong);
}

.price-card.featured {
  background: var(--gradient-primary);
  color: var(--white);
  transform: scale(1.05);
}

.price-card.featured h4,
.price-card.featured .price {
  color: var(--white);
}

.price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-sage);
  margin: 1rem 0;
}

/* Team Section */
.team-section {
  background: var(--light-cream);
}

.team-member {
  text-align: center;
  margin-bottom: 2rem;
}

.team-member img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid var(--primary-cream);
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.team-member:hover img {
  transform: scale(1.1);
}

/* Reviews Section */
.reviews-section {
  background: var(--light-dusty-blue);
}

.review-item {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--shadow-soft);
  margin-bottom: 2rem;
}

.review-text {
  font-style: italic;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: var(--medium-gray);
}

.review-author {
  font-weight: 600;
  color: var(--dark-sage);
}

/* Core Info Section */
.coreinfo-section {
  background: var(--white);
}

.coreinfo-item {
  background: var(--light-sage);
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.coreinfo-item:hover {
  transform: translateY(-5px);
}

/* Contact Form Section */
.contact-section {
  background: var(--light-lavender);
}

.contact-form {
  background: var(--white);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: var(--shadow-medium);
}

.form-control {
  border: 2px solid var(--light-gray);
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-sage);
  box-shadow: 0 0 0 0.2rem rgba(156, 175, 136, 0.25);
}

.btn-primary {
  background: var(--gradient-primary);
  border: none;
  padding: 1rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

/* Blog Section */
.blog-section {
  background: var(--light-peach);
}

.blog-item {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease;
  margin-bottom: 2rem;
}

.blog-item:hover {
  transform: translateY(-10px);
}

.blog-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 2rem;
}

/* FAQ Section */
.faq-section {
  background: var(--light-cream);
}

.accordion-item {
  border: none;
  margin-bottom: 1rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.accordion-button {
  background: var(--primary-sage);
  color: var(--white);
  font-weight: 600;
  border: none;
}

.accordion-button:not(.collapsed) {
  background: var(--dark-sage);
  color: var(--white);
}

.accordion-body {
  background: var(--white);
  color: var(--medium-gray);
}

/* Gallery Section */
.gallery-section {
  background: var(--light-dusty-blue);
  padding: 5rem 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  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: var(--gradient-primary);
  color: var(--white);
  padding: 3rem 0 1rem;
}

footer p {
 
  color: var(--white);
 
}

.footer-content {
  margin-bottom: 2rem;
}

.footer-section h5 {
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
  color: var(--light-cream);
  text-decoration: none;
  margin-bottom: 0.5rem;
}

.footer-section a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 1rem;
  text-align: center;
}

/* Breadcrumb */
.breadcrumb-container {
  padding: 1rem 0;
  background: var(--light-gray);
}

.breadcrumb-img {
  height: 40px;
  object-fit: contain;
}

/* Swiper Styles */
.swiper {
  width: 100%;
  padding-bottom: 3rem;
}

.swiper-slide {
  height: auto;
}

.swiper-pagination-bullet-active {
  background: var(--primary-sage);
}

/* Utility Classes */
.text-primary { color: var(--primary-sage) !important; }
.bg-primary { background: var(--primary-sage) !important; }
.border-primary { border-color: var(--primary-sage) !important; }

/* Responsive Design Enhancements */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .hero-section {
    min-height: 80vh;
  }
  
  .shape {
    display: none;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Print Styles */
@media print {
  .shape,
  .hero-section::before {
    display: none;
  }
  
  * {
    background: white !important;
    color: black !important;
  }
} 