/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #5f2a1f;
  --secondary-color: #1f545f;
  --text-color: #121212;
  --light-bg: #f8f9fa;
  --white: #ffffff;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

body {
  font-family: "Overpass", sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Navigation */
.navbar {
  padding: 0.75rem 0;
  transition: all 0.3s ease;
}

.navbar-brand img {
  transition: transform 0.3s ease;
}

.navbar-brand:hover img {
  transform: scale(1.05);
}

.nav-link {
  font-weight: 500;
  color: var(--text-color) !important;
  padding: 0.5rem 1rem !important;
  transition: color 0.3s ease;
}

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

.btn-nav {
  background-color: var(--primary-color);
  color: var(--white) !important;
  padding: 0.5rem 1.5rem !important;
  margin-left: 1rem;
  transition: all 0.3s ease;
}

.btn-nav:hover {
  background-color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* Hero Section */
.hero-section {
  padding: 150px 0 100px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-content {
  animation: fadeInUp 1s ease;
}

.hero-icon-item {
  transition: transform 0.3s ease;
}

.hero-icon-item:hover {
  transform: translateY(-5px);
}

/* Trust Section */
.trust-section {
  border-top: 1px solid #dee2e6;
  border-bottom: 1px solid #dee2e6;
}

.trust-badge {
  transition: transform 0.3s ease;
}

.trust-badge:hover {
  transform: scale(1.05);
}

/* Services Section */
.services-section {
  padding: 80px 0;
}

.service-card {
  transition: all 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

/* CTA Sections */
.cta-section-1,
.cta-section-2 {
  position: relative;
  overflow: hidden;
}

.cta-section-1 {
  background-color: var(--primary-color);
}

.cta-section-2 {
  background-color: var(--secondary-color);
}

/* About Section */
.about-section {
  padding: 80px 0;
}

.feature-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background-color: var(--light-bg);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Benefits Section */
.benefits-section {
  padding: 80px 0;
}

.benefit-card {
  transition: transform 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
}

/* Process Section */
.process-section {
  padding: 80px 0;
}

.process-step {
  transition: transform 0.3s ease;
}

.process-step:hover {
  transform: translateY(-5px);
}

.process-number {
  display: inline-block;
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--light-bg);
}

/* Owner Section */
.owner-section {
  padding: 80px 0;
}

.owner-image {
  max-width: 350px;
  width: 100%;
}

/* Testimonials Section */
.testimonials-section {
  padding: 80px 0;
}

.testimonial-card {
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.stars i {
  font-size: 1.2rem;
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
}

.accordion-button {
  font-weight: 600;
  color: var(--text-color);
  background-color: var(--white);
}

.accordion-button:not(.collapsed) {
  background-color: var(--primary-color);
  color: var(--white);
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--primary-color);
}

/* Contact Section */
.contact-section {
  padding: 80px 0;
}

.contact-form-wrapper,
.contact-info-wrapper {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.contact-info-item {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #dee2e6;
}

.contact-info-item:last-child {
  border-bottom: none;
}

.map-wrapper {
  height: 400px;
}

/* Footer */
.footer {
  background-color: var(--text-color);
  color: var(--white);
}

.footer-text {
  color: var(--white);
}

.footer-heading {
  color: var(--white);
  font-weight: 700;
}

.footer-link {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #ccc;
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.2);
}

/* Buttons */
.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  font-weight: 600;
}

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

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

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 991px) {
  .navbar-collapse {
    background-color: var(--white);
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
  }

  .btn-nav {
    margin-left: 0;
    margin-top: 0.5rem;
    display: block;
    text-align: center;
  }

  .hero-section {
    padding: 120px 0 60px;
    min-height: auto;
  }

  .hero-icons {
    gap: 2rem !important;
  }
}

@media (max-width: 767px) {
  .display-3 {
    font-size: 2rem;
  }

  .display-5 {
    font-size: 1.75rem;
  }

  .hero-section {
    padding: 100px 0 50px;
  }

  .owner-image {
    max-width: 250px;
  }
}

/* Form Validation */
.was-validated .form-control:valid {
  border-color: #198754;
}

.was-validated .form-control:invalid {
  border-color: #dc3545;
}

/* Modal Styles */
.modal-content {
  border: none;
}

.modal-header {
  background-color: var(--primary-color);
  color: var(--white);
}

.modal-header .btn-close {
  filter: invert(1);
}

/* Utility Classes */
.text-primary {
  color: var(--primary-color) !important;
}

.bg-primary {
  background-color: var(--primary-color) !important;
}

.text-secondary {
  color: var(--secondary-color) !important;
}

.bg-secondary {
  background-color: var(--secondary-color) !important;
}
