/* AI Property Valuation Tool - Main CSS */
/* Bootstrap 5 + Custom Variables - NO OVERRIDES */

:root {
  /* 5 Primary Pastel Colors + Light/Dark Shades */
  --primary-blue: #6E96CF;
  --primary-blue-light: #A8C5E8;
  --primary-blue-dark: #4A6B9A;
  
  --primary-green: #7BC3A3;
  --primary-green-light: #B5E2CE;
  --primary-green-dark: #4F8B6B;
  
  --primary-purple: #A591C3;
  --primary-purple-light: #C9BBDE;
  --primary-purple-dark: #7A6394;
  
  --primary-orange: #F2B366;
  --primary-orange-light: #F7D1A1;
  --primary-orange-dark: #D49140;
  
  --primary-rose: #E8A8A8;
  --primary-rose-light: #F0C7C7;
  --primary-rose-dark: #C77B7B;
  
  /* Neutral Colors */
  --white: #FFFFFF;
  --light-gray: #F8F9FA;
  --medium-gray: #6C757D;
  --dark-gray: #343A40;
  --black: #000000;
  
  /* Conservative Typography */
  --font-size-small: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-h6: 1rem;
  --font-size-h5: 1.125rem;
  --font-size-h4: 1.25rem;
  --font-size-h3: 1.375rem;
  --font-size-h2: 1.5rem;
  --font-size-h1: 1.75rem;
  
  /* Spacing */
  --section-padding: 4rem 0;
  --card-padding: 1.5rem;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Base Typography - Conservative Sizes */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--dark-gray);
}

h1, .h1 {
  font-size: var(--font-size-h1);
  font-weight: 600;
  margin-bottom: 1rem;
}

h2, .h2 {
  font-size: var(--font-size-h2);
  font-weight: 600;
  margin-bottom: 0.875rem;
}

h3, .h3 {
  font-size: var(--font-size-h3);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

h4, .h4 {
  font-size: var(--font-size-h4);
  font-weight: 500;
  margin-bottom: 0.625rem;
}

h5, .h5 {
  font-size: var(--font-size-h5);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

h6, .h6 {
  font-size: var(--font-size-h6);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

p {
  font-size: var(--font-size-base);
  margin-bottom: 1rem;
}

/* Conservative Navbar Brand */
.navbar-brand {
  font-size: var(--font-size-lg);
  font-weight: 600;
}

/* Section Styling */
.section {
  padding: var(--section-padding);
}

/* Hero Section - Fullscreen with decorative shapes */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-blue-light), var(--primary-green-light));
  position: relative;
  overflow: hidden;
}

.hero-shape-1 {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: var(--primary-purple-light);
  border-radius: 50%;
  opacity: 0.3;
}

.hero-shape-2 {
  position: absolute;
  bottom: -75px;
  left: -75px;
  width: 150px;
  height: 150px;
  background: var(--primary-orange-light);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  opacity: 0.4;
}

/* Services Cards */
.service-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 8px;
  padding: var(--card-padding);
  height: 100%;
  transition: transform 0.2s ease;
}

.service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-price {
  font-size: var(--font-size-xl);
  font-weight: 600;
  color: var(--primary-blue);
}

/* Features Grid */
.feature-item {
  text-align: center;
  padding: 1.5rem;
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

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

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  display: block;
}

/* Reviews/Testimonials - Static Cards Only */
.review-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 8px;
  padding: var(--card-padding);
  height: 100%;
}

.review-stars {
  color: var(--primary-orange);
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

/* FAQ - Static Cards Only (NO Accordion) */
.faq-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 8px;
  padding: var(--card-padding);
  margin-bottom: 1rem;
}

.faq-question {
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 0.75rem;
}

/* Contact Form */
.contact-form {
  background: var(--light-gray);
  border-radius: 8px;
  padding: 2rem;
}

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

.contact-info-item i {
  color: var(--primary-blue);
  margin-right: 0.75rem;
  font-size: 1.125rem;
}

/* Gallery */
.gallery-item {
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Footer - High Contrast Colors (No Gradients) */
.footer {
  background: var(--dark-gray);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--primary-blue-light);
  margin-bottom: 1rem;
}

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

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

.footer-bottom {
  background: var(--black);
  color: var(--light-gray);
  padding: 1rem 0;
  margin-top: 2rem;
}

/* Process Steps */
.process-step {
  text-align: center;
  padding: 1.5rem;
  position: relative;
}

.process-number {
  width: 50px;
  height: 50px;
  background: var(--primary-purple);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-weight: 600;
}

/* Case Studies */
.case-study-card {
  background: var(--white);
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  height: 100%;
}

/* Price Plans */
.price-plan-card {
  background: var(--white);
  border: 2px solid var(--light-gray);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  height: 100%;
  position: relative;
}

.price-plan-card.featured {
  border-color: var(--primary-blue);
}

.price-plan-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin: 1rem 0;
}

/* Core Info Grid */
.core-info-item {
  background: var(--white);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.core-info-icon {
  font-size: 2rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

/* Timeline */
.timeline-item {
  background: var(--white);
  border-left: 4px solid var(--primary-orange);
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-radius: 0 8px 8px 0;
}

/* Career Items */
.career-item {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.career-role {
  color: var(--primary-purple);
  font-weight: 600;
}

/* Blog Grid */
.blog-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.blog-image {
  height: 200px;
  object-fit: cover;
  width: 100%;
}

.blog-content {
  padding: 1.5rem;
}

/* Utilities */
.text-primary-blue { color: var(--primary-blue); }
.text-primary-green { color: var(--primary-green); }
.text-primary-purple { color: var(--primary-purple); }
.text-primary-orange { color: var(--primary-orange); }
.text-primary-rose { color: var(--primary-rose); }

.bg-primary-blue { background-color: var(--primary-blue); }
.bg-primary-green { background-color: var(--primary-green); }
.bg-primary-purple { background-color: var(--primary-purple); }
.bg-primary-orange { background-color: var(--primary-orange); }
.bg-primary-rose { background-color: var(--primary-rose); }

.bg-primary-blue-light { background-color: var(--primary-blue-light); }
.bg-primary-green-light { background-color: var(--primary-green-light); }
.bg-primary-purple-light { background-color: var(--primary-purple-light); }
.bg-primary-orange-light { background-color: var(--primary-orange-light); }
.bg-primary-rose-light { background-color: var(--primary-rose-light); }

/* Breadcrumbs - Image Only */
.breadcrumb-image {
  width: 24px;
  height: 24px;
  object-fit: contain;
} 

.hero-section h1 {
    padding-top: 150px;
}


/* Team Social Links - Rounded Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
}

.social-icons-grid {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.facebook-link:hover {
    background: linear-gradient(135deg, #0d6efd, #1877f2);
}

.linkedin-link {
    background: linear-gradient(135deg, #0a66c2, #2196f3);
}

.linkedin-link:hover {
    background: linear-gradient(135deg, #084a8a, #0a66c2);
}

.instagram-link {
    background: linear-gradient(135deg, #e4405f, #f77737, #fcaf45);
}

.instagram-link:hover {
    background: linear-gradient(135deg, #d62976, #e4405f, #f77737);
}

.x-link {
    background: linear-gradient(135deg, #000000, #333333);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 20px;
}

.x-link:hover {
    background: linear-gradient(135deg, #1a1a1a, #000000);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
