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

:root {
  --primary-color: #2563eb;
  --primary-dark: #1e40af;
  --secondary-color: #10b981;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --bg-light: #f9fafb;
  --bg-white: #ffffff;
  --border-color: #e5e7eb;
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
}

body {
  font-family:
    -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation Bar */
.navbar {
  background: var(--bg-white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-img {
  width: 40px;
  height: 40px;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-link {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

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

.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--bg-white);
  box-shadow: var(--shadow-lg);
  border-radius: 8px;
  padding: 10px 0;
  min-width: 200px;
  margin-top: 10px;
  animation: fadeIn 0.2s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Dropdown visibility is managed by JavaScript */
.dropdown:focus-within .dropdown-content {
  display: block;
}

.dropdown-content a {
  display: block;
  padding: 12px 20px;
  color: var(--text-dark);
  text-decoration: none;
  transition: background 0.3s;
}

.dropdown-content a:hover {
  background: var(--bg-light);
  color: var(--primary-color);
}

/* Buttons */
.btn-primary {
  background: var(--primary-color);
  color: white;
  padding: 10px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
  display: inline-block;
}

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

.btn-secondary {
  background: var(--bg-white);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  padding: 10px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  display: inline-block;
  text-align: center;
}

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

.btn-hero {
  background: white;
  color: var(--primary-color);
  padding: 16px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  display: inline-block;
  box-shadow: var(--shadow-lg);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.btn-submit {
  background: var(--primary-color);
  color: white;
  padding: 14px 32px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
  width: 100%;
}

.btn-submit:hover {
  background: var(--primary-dark);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  color: white;
  padding: 120px 20px;
  text-align: center;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 800;
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 40px;
  opacity: 0.95;
}

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.page-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.page-hero p {
  font-size: 1.2rem;
  opacity: 0.95;
}

/* Quote Hero */
.quote-hero {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.quote-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.quote-hero p {
  font-size: 1.1rem;
  opacity: 0.95;
}

/* Info Section */
.info-section {
  padding: 80px 20px;
  background: var(--bg-white);
}

.info-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: var(--text-dark);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.info-card {
  text-align: center;
  padding: 30px;
}

.info-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  display: block;
  width: 80px;
  height: 80px;
  line-height: 80px;
  margin: 0 auto 20px;
  background: var(--bg-light);
  border-radius: 50%;
  font-weight: bold;
}

.info-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.info-card p {
  color: var(--text-light);
  line-height: 1.8;
}

/* Services Section */
.services-section {
  padding: 80px 20px;
  background: var(--bg-light);
}

.services-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: var(--text-dark);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--bg-white);
  border-radius: 12px;
  padding: 30px;
  box-shadow: var(--shadow);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

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

.service-image {
  height: 200px;
  border-radius: 8px;
  margin-bottom: 20px;
  background-size: cover;
  background-position: center;
}

.service-image.scheduled {
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.8), rgba(30, 64, 175, 0.8)),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="50" font-size="40" fill="white">🏠</text></svg>');
  background-size: cover;
}

.service-image.detailed {
  background:
    linear-gradient(135deg, rgba(16, 185, 129, 0.8), rgba(5, 150, 105, 0.8)),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="50" font-size="40" fill="white">✨</text></svg>');
  background-size: cover;
}

.service-image.specialty {
  background:
    linear-gradient(135deg, rgba(139, 92, 246, 0.8), rgba(109, 40, 217, 0.8)),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="50" font-size="40" fill="white">🔧</text></svg>');
  background-size: cover;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.service-card > p {
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.8;
}

.service-features {
  list-style: none;
  margin-bottom: 25px;
}

.service-features li {
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
  color: var(--text-light);
}

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

/* Testimonials */
.testimonials-section {
  padding: 80px 20px;
  background: var(--bg-white);
}

.testimonials-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: var(--text-dark);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: var(--bg-light);
  border-radius: 12px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.stars {
  color: #fbbf24;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.8;
}

.testimonial-author {
  color: var(--text-light);
  font-weight: 600;
}

/* FAQ Section */
.faq-section {
  padding: 80px 20px;
  background: var(--bg-light);
}

.faq-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: var(--text-dark);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-white);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.faq-question {
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s;
}

.faq-question:hover {
  background: var(--bg-light);
}

.faq-question h3 {
  font-size: 1.1rem;
  color: var(--text-dark);
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: bold;
  transition: transform 0.3s;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 20px 20px 20px;
  color: var(--text-light);
  line-height: 1.8;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.95;
}

/* Quote Form Section */
.quote-form-section {
  padding: 60px 20px;
  background: var(--bg-light);
}

.quote-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

.quote-info h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: var(--text-dark);
}

.info-item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.check-icon {
  color: var(--secondary-color);
  font-size: 1.5rem;
  font-weight: bold;
  flex-shrink: 0;
}

.info-item h3 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--text-dark);
}

.info-item p {
  color: var(--text-light);
  line-height: 1.6;
}

.quote-form-container {
  background: var(--bg-white);
  border-radius: 12px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.quote-form h3 {
  font-size: 1.5rem;
  margin-bottom: 25px;
  margin-top: 30px;
  color: var(--text-dark);
}

.quote-form h3:first-child {
  margin-top: 0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-dark);
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.checkbox-group input[type='checkbox'] {
  width: auto;
}

.success-message {
  text-align: center;
  padding: 40px;
}

.success-message h3 {
  color: var(--secondary-color);
  font-size: 2rem;
  margin-bottom: 20px;
}

.success-message p {
  color: var(--text-light);
  margin-bottom: 30px;
  font-size: 1.1rem;
}

/* Content Section */
.content-section {
  padding: 80px 20px;
  background: var(--bg-white);
}

.content-section h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: var(--text-dark);
}

.content-text p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

/* Team Section */
.team-section {
  padding: 80px 20px;
  background: var(--bg-light);
}

.team-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: var(--text-dark);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.team-member {
  text-align: center;
  background: var(--bg-white);
  padding: 30px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--primary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  margin: 0 auto 20px;
}

.team-member h3 {
  font-size: 1.3rem;
  margin-bottom: 5px;
  color: var(--text-dark);
}

.team-role {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 15px;
}

.team-member p:last-child {
  color: var(--text-light);
  line-height: 1.6;
}

/* Values Section */
.values-section {
  padding: 80px 20px;
  background: var(--bg-white);
}

.values-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: var(--text-dark);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.value-card {
  background: var(--bg-light);
  padding: 30px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.value-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.value-card p {
  color: var(--text-light);
  line-height: 1.8;
}

/* Service Detail Section */
.service-detail-section {
  padding: 80px 20px;
  background: var(--bg-white);
}

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

.service-detail-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.service-description {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 40px;
  line-height: 1.8;
}

.service-detail-content h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  margin-top: 30px;
  color: var(--text-dark);
}

.feature-list {
  list-style: none;
  margin-bottom: 30px;
}

.feature-list li {
  padding: 10px 0;
  padding-left: 30px;
  position: relative;
  color: var(--text-light);
  font-size: 1.05rem;
}

.feature-list li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
  font-size: 1.2rem;
}

.pricing-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.pricing-card {
  background: var(--bg-light);
  padding: 25px;
  border-radius: 8px;
  text-align: center;
  border: 2px solid var(--border-color);
  transition: border-color 0.3s;
}

.pricing-card:hover {
  border-color: var(--primary-color);
}

.pricing-card h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.price {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: bold;
  margin-bottom: 10px;
}

.pricing-card p:last-child {
  color: var(--text-light);
  font-size: 0.95rem;
}

.pricing-highlight {
  background: var(--bg-light);
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  margin: 30px 0;
  border-left: 4px solid var(--primary-color);
}

.pricing-highlight h4 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.pricing-highlight p {
  color: var(--text-light);
  font-size: 1.05rem;
}

.specialty-service {
  background: var(--bg-light);
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 30px;
}

.specialty-service h4 {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.specialty-service > p {
  color: var(--text-light);
  margin-bottom: 15px;
  line-height: 1.8;
}

/* Why Choose Section */
.why-choose-section {
  padding: 80px 20px;
  background: var(--bg-light);
}

.why-choose-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: var(--text-dark);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: var(--bg-white);
  padding: 20px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.benefit-icon {
  color: var(--secondary-color);
  font-size: 1.5rem;
  font-weight: bold;
  flex-shrink: 0;
}

.benefit-item h3 {
  font-size: 1.05rem;
  color: var(--text-dark);
}

/* Contact Section */
.contact-section {
  padding: 60px 20px;
  background: var(--bg-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
}

.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.contact-info > p {
  color: var(--text-light);
  margin-bottom: 40px;
  line-height: 1.8;
}

.contact-method {
  margin-bottom: 30px;
}

.contact-method h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.contact-method p {
  color: var(--text-light);
  line-height: 1.6;
}

.contact-hours {
  font-size: 0.9rem;
  font-style: italic;
}

.contact-form-container {
  background: var(--bg-light);
  border-radius: 12px;
  padding: 40px;
}

.contact-form-container h3 {
  font-size: 1.5rem;
  margin-bottom: 25px;
  color: var(--text-dark);
}

.contact-form {
  /* Form styles already defined */
}

/* Quick Actions */
.quick-actions-section {
  padding: 80px 20px;
  background: var(--bg-light);
}

.quick-actions-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: var(--text-dark);
}

.quick-actions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.action-card {
  background: var(--bg-white);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow);
}

.action-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.action-card p {
  color: var(--text-light);
  margin-bottom: 25px;
  line-height: 1.6;
}

/* Footer */
.footer {
  background: var(--text-dark);
  color: white;
  padding: 60px 20px 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h4 {
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.footer-section p {
  margin-bottom: 10px;
  opacity: 0.8;
}

.footer-section a {
  display: block;
  color: white;
  text-decoration: none;
  margin-bottom: 10px;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.footer-section a:hover {
  opacity: 1;
}

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

.footer-bottom p {
  opacity: 0.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

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

  .hero-content p {
    font-size: 1.1rem;
  }

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

  .info-grid,
  .services-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .quote-content,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  section h2 {
    font-size: 2rem;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }
}
