/* Solar Carport Installation Company - Main CSS */

:root {
  /* Primary Color Palette - Pastel High-Contrast */
  --primary-blue: #4aa0ff;
  --primary-green: #04cc9c;
  --primary-orange: #ffb723;
  --primary-gray: #5b657a;
  --primary-white: #FFFFFF;
  
  /* Light & Dark Shades */
  --blue-light: #c9e3f4;
  --blue-dark: #0f4ac5;
  --green-light: #b6eac9;
  --green-dark: #006339;
  --orange-light: #f9f3ce;
  --orange-dark: #f19e1e;
  --gray-light: #F9FAFB;
  --gray-dark: #3f4453;
  
  /* Typography */
  --font-size-small: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
}

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

/* Global Styles */
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--gray-dark);
  font-size: var(--font-size-base);
}

/* Conservative Typography */
.navbar-brand {
  font-size: var(--font-size-xl);
  font-weight: 600;
  color: var(--primary-blue);
}

h1 {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  color: var(--gray-dark);
  line-height: 1.3;
}

h2 {
  font-size: var(--font-size-2xl);
  font-weight: 600;
  color: var(--gray-dark);
}

h3 {
  font-size: var(--font-size-xl);
  font-weight: 600;
  color: var(--gray-dark);
}

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

/* Header Styles */
.navbar {
  background-color: var(--primary-white);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  padding: 1rem 0;
}

.navbar-nav .nav-link {
  color: var(--gray-dark);
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-blue);
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--blue-light) 0%, var(--green-light) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-decorative {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--orange-light);
  opacity: 0.3;
  z-index: 1;
}

.hero-decorative:nth-child(1) {
  top: 10%;
  right: 10%;
}

.hero-decorative:nth-child(2) {
  bottom: 20%;
  left: 5%;
  background: var(--green-light);
}

.hero-content {
  position: relative;
  z-index: 2;
    padding-top: 125px;
}

/* Services Section */
.services-card {
  background: var(--primary-white);
  border: 1px solid var(--gray-light);
  border-radius: 0.5rem;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

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

.services-price {
  color: var(--primary-blue);
  font-size: var(--font-size-2xl);
  font-weight: 700;
}

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

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

/* Team Section */
.team-card {
  background: var(--primary-white);
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-3px);
}

.team-photo {
  width: 100%;
  height: 250px;
  object-fit: cover;
  background: var(--gray-light);
}

.team-info {
  padding: 1.5rem;
  text-align: center;
}

/* Reviews Section */
.review-card {
  background: var(--primary-white);
  border-left: 4px solid var(--primary-blue);
  padding: 1.5rem;
  margin-bottom: 1rem;
}

/* FAQ Section */
.faq-card {
  background: var(--primary-white);
  border: 1px solid var(--gray-light);
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

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

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

.form-control {
  border: 1px solid var(--gray-light);
  border-radius: 0.25rem;
  padding: 0.75rem;
  font-size: var(--font-size-base);
}

.form-control:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 0.2rem rgba(55, 144, 221, 0.25);
}

.btn-primary {
  background-color: var(--primary-blue);
  border-color: var(--primary-blue);
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 0.25rem;
}

.btn-primary:hover {
  background-color: var(--blue-dark);
  border-color: var(--blue-dark);
}

/* Footer */
.footer {
  background-color: var(--gray-dark);
  color: var(--primary-white);
  padding: 3rem 0 1rem;
}

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

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

/* Gallery */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

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

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

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

.process-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--primary-blue);
  color: var(--primary-white);
  border-radius: 50%;
  font-size: var(--font-size-xl);
  font-weight: 700;
  margin-bottom: 1rem;
}

/* Breadcrumbs */
.breadcrumb-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: var(--gray-light);
}

/* Utility Classes */
.text-solar-blue { color: var(--primary-blue); }
.text-solar-green { color: var(--primary-green); }
.text-solar-orange { color: var(--primary-orange); }
.bg-solar-light { background-color: var(--gray-light); }

/* Section Spacing */
.section-padding {
  padding: 4rem 0;
}

.section-padding-large {
  padding: 6rem 0;
} 


/* Team Social Links - Minimal Style */
.team-social-links {
    margin-top: 16px;
    padding: 10px 0;
}

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

.social-link {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    background: white;
}

.social-link:hover {
    transform: translateY(-1px);
    color: white;
}

.facebook-link:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: white;
}

.linkedin-link:hover {
    background: #0a66c2;
    border-color: #0a66c2;
    color: white;
}

.instagram-link:hover {
    background: #e4405f;
    border-color: #e4405f;
    color: white;
}

.x-link {
    position: relative;
}

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

.x-link:hover {
    background: #000000;
    border-color: #000000;
    color: white;
}

.x-link:hover::after {
    color: white;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 15px;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}
