@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

:root {
  --primary-red: #E20000;
  --primary-red-dark: #C00000;
  --black: #000000;
  --white: #FFFFFF;
  --dark-blue: #2C3E50;
  --light-gray: #BDC3C7;
  --medium-gray: #808080;
  --font-primary: 'Montserrat', Arial, sans-serif;
  --header-height: 70px;
  --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  color: var(--black);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

ul, ol {
  list-style: none;
}

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

.btn-primary {
  display: inline-block;
  background-color: var(--primary-red);
  color: var(--white);
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--transition-smooth);
  font-size: 16px;
}

.btn-primary:hover {
  background-color: var(--primary-red-dark);
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: scale(0.98);
}

.btn-secondary {
  display: inline-block;
  background-color: transparent;
  color: var(--primary-red);
  font-weight: 700;
  padding: 14px 30px;
  border-radius: 4px;
  border: 2px solid var(--primary-red);
  cursor: pointer;
  transition: all 0.3s var(--transition-smooth);
  font-size: 16px;
}

.btn-secondary:hover {
  background-color: var(--primary-red);
  color: var(--white);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.btn-secondary:active {
  transform: scale(0.99);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: var(--white);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
  width: auto;
}

.nav-links {
  display: none;
}

.nav-links.active {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--white);
  padding: 80px 20px 20px;
  z-index: 999;
}

.nav-links a {
  padding: 15px 0;
  font-size: 18px;
  color: var(--dark-blue);
  border-bottom: 1px solid var(--light-gray);
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--primary-red);
}

.header-cta {
  display: none;
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--black);
  border-radius: 2px;
  transition: all 0.3s var(--transition-smooth);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu-close {
  display: none;
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 30px;
  color: var(--dark-blue);
  cursor: pointer;
  z-index: 1002;
}

.nav-links.active .mobile-menu-close {
  display: block;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 20px 80px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(44, 62, 80, 0.9) 0%, rgba(44, 62, 80, 0.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
}

.hero h1 {
  font-size: 36px;
  color: var(--white);
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  color: var(--light-gray);
  margin-bottom: 30px;
}

.hero .btn-primary {
  margin-top: 20px;
}

.licensed-badge {
  position: absolute;
  bottom: 30px;
  left: 20px;
  background-color: rgba(226, 0, 0, 0.9);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  z-index: 2;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.section {
  padding: 80px 20px;
}

.section-dark {
  background-color: var(--dark-blue);
  color: var(--white);
}

.section-gray {
  background-color: #F8F9FA;
}

.section h2 {
  font-size: 32px;
  margin-bottom: 40px;
  text-align: center;
}

.problem-solution {
  background-color: var(--white);
}

.problem-solution-grid {
  display: grid;
  gap: 40px;
}

.problem-column, .solution-column {
  padding: 30px;
}

.problem-column {
  border-right: none;
}

.solution-column {
  background-color: #F8F9FA;
  border-radius: 8px;
}

.problem-solution h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: var(--dark-blue);
}

.trust-elements {
  background-color: var(--light-gray);
  padding: 80px 20px;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.trust-card {
  background-color: var(--white);
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s var(--transition-smooth), box-shadow 0.3s var(--transition-smooth);
}

.trust-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.trust-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.trust-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--dark-blue);
}

.trust-card p {
  font-size: 14px;
  color: var(--medium-gray);
}

.about-split {
  display: grid;
  gap: 40px;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.about-content h2 {
  text-align: left;
  font-size: 28px;
}

.about-content p {
  margin-bottom: 20px;
  color: var(--medium-gray);
}

.services-summary {
  background-color: var(--dark-blue);
  color: var(--white);
}

.services-summary h2 {
  color: var(--white);
}

.services-grid {
  display: grid;
  gap: 30px;
}

.service-card {
  background-color: var(--white);
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  color: var(--black);
  transition: all 0.3s var(--transition-smooth);
}

.service-card:hover {
  box-shadow: 0 0 20px rgba(226, 0, 0, 0.3);
}

.service-card img {
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
}

.service-card h4 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--dark-blue);
}

.service-card p {
  font-size: 14px;
  color: var(--medium-gray);
}

.process-steps {
  background-color: var(--white);
}

.process-grid {
  display: grid;
  gap: 30px;
}

.process-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.step-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-red);
  line-height: 1;
}

.step-content h4 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--dark-blue);
}

.step-content p {
  color: var(--medium-gray);
}

.testimonials-carousel {
  background-color: var(--dark-blue);
  color: var(--white);
}

.testimonial-card {
  background-color: var(--white);
  padding: 30px;
  border-radius: 8px;
  color: var(--black);
  max-width: 600px;
  margin: 0 auto;
}

.testimonial-card .quote {
  font-size: 18px;
  font-style: italic;
  margin-bottom: 20px;
  color: var(--dark-blue);
}

.testimonial-card .author {
  font-weight: 600;
  color: var(--primary-red);
}

.testimonial-card .role {
  font-size: 14px;
  color: var(--medium-gray);
}

.cta-banner {
  position: relative;
  padding: 100px 20px;
  text-align: center;
  background-size: cover;
  background-position: center;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(226, 0, 0, 0.85) 0%, rgba(226, 0, 0, 0.75) 100%);
}

.cta-banner .container {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  font-size: 32px;
  color: var(--white);
  margin-bottom: 30px;
}

.faq-section {
  background-color: var(--white);
}

.faq-grid {
  display: grid;
  gap: 20px;
}

.accordion-item {
  border-bottom: 1px solid var(--light-gray);
  padding: 20px 0;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  color: var(--dark-blue);
  font-size: 18px;
}

.accordion-header::after {
  content: '+';
  font-size: 24px;
  color: var(--primary-red);
  transition: transform 0.3s;
}

.accordion-item.active .accordion-header::after {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--transition-smooth);
}

.accordion-item.active .accordion-content {
  max-height: 500px;
}

.accordion-content p {
  padding-top: 15px;
  color: var(--medium-gray);
}

.contact-quick {
  background-color: var(--white);
  text-align: center;
}

.contact-quick h2 {
  margin-bottom: 30px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  color: var(--dark-blue);
}

.contact-method a {
  color: var(--primary-red);
  font-weight: 600;
}

.contact-method img {
  width: 30px;
  height: 30px;
}

.footer {
  background-color: var(--dark-blue);
  color: var(--white);
  padding: 60px 20px 30px;
}

.footer-grid {
  display: grid;
  gap: 40px;
}

.footer-logo img {
  height: 60px;
  margin-bottom: 20px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--light-gray);
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--medium-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
}

.social-links a:hover {
  background-color: var(--primary-red);
}

.footer h4 {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--white);
}

.footer-links a {
  display: block;
  padding: 8px 0;
  color: var(--light-gray);
  transition: color 0.3s;
}

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

.footer-contact p {
  padding: 8px 0;
  color: var(--light-gray);
}

.footer-contact a {
  color: var(--primary-red);
}

.trust-badge {
  display: inline-block;
  margin-top: 15px;
  padding: 8px 12px;
  background-color: rgba(226, 0, 0, 0.2);
  border-radius: 4px;
  font-size: 12px;
  color: var(--white);
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--medium-gray);
  text-align: center;
  font-size: 14px;
  color: var(--light-gray);
}

.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--primary-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--transition-smooth);
  z-index: 999;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  transform: scale(1.1);
}

.scroll-top::after {
  content: '^';
  color: var(--white);
  font-size: 24px;
  font-weight: bold;
}

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

.animate-fade-in {
  animation: fadeInUp 0.6s var(--transition-smooth) forwards;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s var(--transition-smooth);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 48px;
  }
  
  .hero p {
    font-size: 20px;
  }
  
  .problem-solution-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .problem-column {
    border-right: 2px solid var(--light-gray);
  }
  
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .faq-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .nav-links {
    display: none;
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .header-cta {
    display: none;
  }
  
  .mobile-menu-close {
    display: none;
  }
}

@media (min-width: 1024px) {
  :root {
    --header-height: 80px;
  }
  
  .container {
    padding: 0 40px;
  }
  
  .header-inner {
    padding: 0 40px;
  }
  
  .nav-links {
    display: flex;
    flex-direction: row;
    position: static;
    height: auto;
    width: auto;
    background: none;
    padding: 0;
    gap: 30px;
  }
  
  .nav-links a {
    padding: 0;
    font-size: 15px;
    border: none;
    position: relative;
  }
  
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--primary-red);
    transition: all 0.3s var(--transition-smooth);
    transform: translateX(-50%);
  }
  
  .nav-links a:hover::after {
    width: 100%;
  }
  
  .header-cta {
    display: block;
  }
  
  .hamburger {
    display: none;
  }
  
  .hero h1 {
    font-size: 56px;
  }
  
  .section h2 {
    font-size: 40px;
  }
  
  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .about-split {
    grid-template-columns: 1fr 1fr;
  }
  
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .process-grid {
    grid-template-columns: repeat(5, 1fr);
  }
  
  .faq-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
  
  .contact-methods {
    flex-direction: row;
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .header {
    height: 60px;
  }
  
  .logo img {
    height: 40px;
  }
  
  .hero {
    padding: 100px 20px 60px;
    min-height: auto;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .section {
    padding: 60px 20px;
  }
  
  .section h2 {
    font-size: 26px;
  }
  
  .licensed-badge {
    font-size: 10px;
    padding: 6px 12px;
  }
}
