/* Additional custom styles */
:root {
  --primary-color: #4BB6E8;
  --secondary-color: #1F3D5C;
  --accent-color: #E76F51;
  --light-color: #ffffff;
}

body {
  font-family: 'Montserrat', sans-serif;
}

/* Custom animations */
.hover-grow {
  transition: transform 0.3s ease;
}

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

/* Custom button styles */
.button-primary {
  background-color: var(--primary-color);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.button-primary:hover {
  background-color: #3a9acb;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.button-secondary {
  background-color: white;
  color: var(--secondary-color);
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.button-secondary:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.button-accent {
  background-color: var(--accent-color);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.button-accent:hover {
  background-color: #d65b3e;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Hero section styles */
.hero-section {
  background-image: linear-gradient(rgba(31, 61, 92, 0.7), rgba(31, 61, 92, 0.7)), url('../images/index-hero.png');
  background-size: cover;
  background-position: center;
}

/* Social icon styles */
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: white;
  color: var(--secondary-color);
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: var(--primary-color);
  color: white;
}

/* Navigation styles */
.nav-scrolled {
  background-color: rgba(31, 61, 92, 0.9);
}

.call-btn {
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 9999px;
  transition: all 0.3s ease;
}

.call-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* CTA section styles */
.cta-section {
  background-color: #4BB6E8;
  padding: 2rem 0;
}

.cta-section h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #1F3D5C;
  margin-bottom: -2px;
  line-height: 1;
}

.instant-estimate-btn {
  background-color: #D32323;
  color: white;
  padding: 0.75rem 1.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 0.25rem;
  display: inline-block;
  transition: all 0.3s ease;
}

.instant-estimate-btn:hover {
  background-color: #B71C1C;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Animation styles */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Testimonial Slider Styles */
.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #e2e8f0;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background-color: #4BB6E8;
}

.testimonial-prev,
.testimonial-next {
  font-size: 2rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.testimonial-prev:focus,
.testimonial-next:focus {
  outline: none;
}

.swiper-slide {
  padding: 2rem 1rem;
} 