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

:root {
  --primary-red: #C60C30;
  --black: #000000;
  --white: #FFFFFF;
  --dark-gray: #333333;
  --medium-gray: #666666;
  --light-gray: #F0F0F0;
  --header-height: 80px;
  --header-height-scrolled: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', 'Arial', 'Helvetica', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark-gray);
  background-color: var(--white);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul {
  list-style: none;
}

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

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

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.25rem; }
}

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

.btn {
  display: inline-block;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  min-height: 44px;
}

.btn-primary {
  background-color: var(--primary-red);
  color: var(--white);
  border-color: var(--primary-red);
}

.btn-primary:hover {
  background-color: #a00a26;
  border-color: #a00a26;
  transform: scale(1.03);
  box-shadow: 0 4px 15px rgba(198, 12, 48, 0.3);
}

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

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

.btn-white {
  background-color: var(--white);
  color: var(--primary-red);
  border-color: var(--white);
}

.btn-white:hover {
  background-color: var(--light-gray);
  transform: scale(1.03);
}

.section {
  padding: 80px 0;
}

@media (max-width: 768px) {
  .section {
    padding: 50px 0;
  }
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  margin-bottom: 15px;
}

.section-title p {
  color: var(--medium-gray);
  max-width: 600px;
  margin: 0 auto;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 2.5rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 2.5rem; }

.hidden { display: none !important; }
.visible { display: block !important; }

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

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

.fade-in-left {
  animation: fadeInLeft 0.6s ease forwards;
}

.fade-in-right {
  animation: fadeInRight 0.6s ease forwards;
}

.animate-on-scroll {
  opacity: 0;
}

.animate-on-scroll.animated {
  animation: fadeInUp 0.6s ease forwards;
}

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

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

header.scrolled {
  height: var(--header-height-scrolled);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

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

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

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

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

.nav-desktop ul {
  display: flex;
  gap: 25px;
}

.nav-desktop a {
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 5px 0;
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-red);
  transition: width 0.3s ease;
}

.nav-desktop a:hover::after,
.nav-desktop a:focus::after {
  width: 100%;
}

.nav-desktop a:focus {
  outline: 2px solid var(--primary-red);
  outline-offset: 4px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.search-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.search-btn:hover {
  transform: scale(1.1);
}

.search-btn:focus {
  outline: 2px solid var(--primary-red);
  outline-offset: 2px;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-btn:focus {
  outline: 2px solid var(--primary-red);
  outline-offset: 2px;
}

.mobile-actions {
  display: none;
  align-items: center;
  gap: 15px;
}

.mobile-actions a {
  display: flex;
  align-items: center;
}

.mobile-actions .btn {
  padding: 10px 20px;
  font-size: 0.9rem;
}

.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.98);
  padding: 20px;
  z-index: 1001;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.search-overlay.active {
  transform: translateY(0);
}

.search-overlay-content {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 15px;
}

.search-overlay input {
  flex: 1;
  padding: 15px 20px;
  font-size: 1.1rem;
  border: 2px solid var(--medium-gray);
  border-radius: 4px;
  font-family: inherit;
}

.search-overlay input:focus {
  outline: none;
  border-color: var(--primary-red);
}

.search-close-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--white);
  z-index: 1002;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

.mobile-nav.active {
  transform: translateX(0);
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid var(--light-gray);
}

.mobile-nav-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.mobile-nav-content {
  padding: 30px 20px;
}

.mobile-nav ul {
  margin-bottom: 30px;
}

.mobile-nav > ul > li {
  border-bottom: 1px solid var(--light-gray);
}

.mobile-nav a {
  display: block;
  padding: 15px 0;
  font-size: 1.1rem;
  font-weight: 500;
}

.mobile-nav a:focus {
  outline: 2px solid var(--primary-red);
  outline-offset: 2px;
}

.mobile-nav .btn {
  width: 100%;
  margin-top: 20px;
}

.mobile-nav-search {
  margin-top: 20px;
}

.mobile-nav-search input {
  width: 100%;
  padding: 12px 15px;
  font-size: 1rem;
  border: 2px solid var(--medium-gray);
  border-radius: 4px;
  font-family: inherit;
}

.mobile-nav-search input:focus {
  outline: none;
  border-color: var(--primary-red);
}

@media (max-width: 1024px) {
  .nav-desktop {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .mobile-actions {
    display: flex;
  }

  .header-actions .btn-primary,
  .header-actions .search-btn {
    display: none;
  }
}

@media (max-width: 640px) {
  .header-container {
    padding: 0 15px;
  }

  .logo svg {
    height: 40px;
  }
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: var(--header-height);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  color: var(--white);
  padding: 0 30px;
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 3.5rem;
  font-weight: 800;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.hero .btn {
  margin-right: 15px;
}

.hero-secondary {
  position: absolute;
  right: 5%;
  bottom: 20%;
  background-color: var(--white);
  padding: 30px;
  max-width: 350px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.hero-secondary h3 {
  color: var(--primary-red);
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.hero-secondary p {
  color: var(--dark-gray);
  font-size: 0.95rem;
  margin-bottom: 15px;
}

@media (max-width: 1024px) {
  .hero-secondary {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 500px;
  }

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

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

  .hero .btn {
    display: block;
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
  }
}

.help-section {
  background-color: var(--light-gray);
  padding: 60px 0;
}

.help-tabs {
  max-width: 900px;
  margin: 0 auto;
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.help-tabs-header {
  display: flex;
  border-bottom: 1px solid var(--light-gray);
}

.help-tab {
  flex: 1;
  padding: 20px;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--medium-gray);
  position: relative;
}

.help-tab::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--primary-red);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.help-tab.active {
  color: var(--primary-red);
}

.help-tab.active::after {
  transform: scaleX(1);
}

.help-tab:hover {
  background-color: var(--light-gray);
}

.help-tab:focus {
  outline: 2px solid var(--primary-red);
  outline-offset: -2px;
}

.help-tab-content {
  padding: 30px;
  display: none;
}

.help-tab-content.active {
  display: block;
  animation: fadeInUp 0.4s ease;
}

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

.help-search-form {
  display: flex;
  gap: 15px;
}

.help-search-form input {
  flex: 1;
  padding: 15px 20px;
  font-size: 1rem;
  border: 2px solid var(--light-gray);
  border-radius: 4px;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.help-search-form input:focus {
  outline: none;
  border-color: var(--primary-red);
  box-shadow: 0 0 0 3px rgba(198, 12, 48, 0.1);
}

.help-search-form .btn {
  white-space: nowrap;
}

@media (max-width: 768px) {
  .help-tabs-header {
    flex-direction: column;
  }

  .help-tab {
    text-align: left;
    border-bottom: 1px solid var(--light-gray);
  }

  .help-search-form {
    flex-direction: column;
  }
}

.about-section {
  padding: 100px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-content h2 {
  margin-bottom: 20px;
}

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

.about-image {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.about-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 70%, rgba(0, 0, 0, 0.1));
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-image {
    order: -1;
  }

  .about-image img {
    height: 300px;
  }
}

.services-overview {
  background-color: var(--light-gray);
  padding: 100px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.service-card {
  background-color: var(--white);
  padding: 40px 30px;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--primary-red);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card-icon svg {
  width: 50px;
  height: 50px;
  fill: var(--primary-red);
}

.service-card h3 {
  margin-bottom: 15px;
  color: var(--dark-gray);
}

.service-card p {
  color: var(--medium-gray);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-red);
  font-weight: 600;
  transition: gap 0.3s ease;
}

.service-card-link:hover {
  gap: 12px;
}

.service-card-link svg {
  transition: transform 0.3s ease;
}

.service-card-link:hover svg {
  transform: translateX(5px);
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.case-studies-preview {
  padding: 100px 0;
}

.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.case-study-card {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

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

.case-study-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.case-study-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.case-study-card:hover .case-study-image img {
  transform: scale(1.05);
}

.case-study-content {
  padding: 25px;
}

.case-study-content h3 {
  margin-bottom: 10px;
}

.case-study-content p {
  color: var(--medium-gray);
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.case-study-link {
  color: var(--primary-red);
  font-weight: 600;
}

.section-cta {
  text-align: center;
}

@media (max-width: 768px) {
  .case-studies-grid {
    grid-template-columns: 1fr;
  }
}

.testimonial-section {
  background-color: var(--dark-gray);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.testimonial-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.testimonial-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-quote {
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--white);
  font-style: italic;
  margin-bottom: 30px;
  line-height: 1.6;
}

.testimonial-quote::before {
  content: '"';
  font-size: 4rem;
  color: var(--primary-red);
  display: block;
  margin-bottom: 10px;
}

.testimonial-author {
  color: var(--white);
  font-size: 1.1rem;
}

.testimonial-author strong {
  color: var(--primary-red);
}

.testimonial-cta {
  margin-top: 50px;
}

.testimonial-cta .btn {
  animation: pulse 2s infinite;
}

@media (max-width: 768px) {
  .testimonial-quote {
    font-size: 1.25rem;
  }
}

.newsletter-section {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.newsletter-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-content h2 {
  margin-bottom: 15px;
}

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

.newsletter-form {
  display: flex;
  gap: 15px;
}

.newsletter-form input {
  flex: 1;
  padding: 15px 20px;
  font-size: 1rem;
  border: 2px solid var(--light-gray);
  border-radius: 4px;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--primary-red);
}

@media (max-width: 640px) {
  .newsletter-form {
    flex-direction: column;
  }
}

footer {
  background-color: var(--black);
  color: var(--white);
  padding-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 60px;
}

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

.footer-col p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.7);
  display: block;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

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

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

.footer-logo svg {
  height: 40px;
  fill: var(--white);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact-item svg {
  flex-shrink: 0;
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background-color: var(--primary-red);
  transform: translateY(-3px);
}

.footer-social svg {
  fill: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 25px 0;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.footer-legal {
  display: flex;
  gap: 25px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

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

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom-content {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.page-hero {
  position: relative;
  height: 60vh;
  min-height: 450px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  margin-top: var(--header-height);
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  color: var(--white);
}

.page-hero-content h1 {
  color: var(--white);
  margin-bottom: 15px;
}

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

.services-page-section {
  padding: 80px 0;
}

.services-categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-category-card {
  background-color: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 8px;
  padding: 40px 30px;
  transition: all 0.3s ease;
}

.service-category-card:hover {
  border-color: var(--primary-red);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.service-category-card-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.service-category-card-icon svg {
  width: 50px;
  height: 50px;
  fill: var(--primary-red);
}

.service-category-card h3 {
  margin-bottom: 15px;
}

.service-category-card p {
  color: var(--medium-gray);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.service-category-link {
  color: var(--primary-red);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.service-category-link:hover {
  gap: 12px;
}

@media (max-width: 1024px) {
  .services-categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .services-categories-grid {
    grid-template-columns: 1fr;
  }
}

.why-choose-section {
  background-color: var(--light-gray);
  padding: 80px 0;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: start;
}

.why-choose-features h2 {
  margin-bottom: 30px;
}

.why-choose-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.why-choose-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.why-choose-item-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background-color: var(--primary-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-choose-item-icon svg {
  width: 25px;
  height: 25px;
  fill: var(--white);
}

.why-choose-item h4 {
  margin-bottom: 5px;
}

.why-choose-item p {
  color: var(--medium-gray);
  font-size: 0.95rem;
}

.why-choose-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.why-choose-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .why-choose-grid {
    grid-template-columns: 1fr;
  }

  .why-choose-image {
    order: -1;
  }
}

.company-story-section {
  padding: 80px 0;
}

.company-story-content {
  max-width: 800px;
  margin: 0 auto;
}

.company-story-content h2 {
  margin-bottom: 30px;
}

.company-story-content p {
  color: var(--medium-gray);
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.mission-values-section {
  background-color: var(--light-gray);
  padding: 80px 0;
}

.mission-values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.mission-card,
.values-card {
  background-color: var(--white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.mission-card h3,
.values-card h3 {
  color: var(--primary-red);
  margin-bottom: 20px;
}

.mission-card p {
  color: var(--medium-gray);
  font-size: 1.05rem;
}

.values-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.values-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}

.values-list li::before {
  content: '';
  width: 10px;
  height: 10px;
  background-color: var(--primary-red);
  border-radius: 50%;
}

@media (max-width: 768px) {
  .mission-values-grid {
    grid-template-columns: 1fr;
  }
}

.team-section {
  padding: 80px 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.team-member {
  text-align: center;
}

.team-member-image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin: 0 auto 20px;
  overflow: hidden;
  background-color: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-member-image svg {
  width: 80px;
  height: 80px;
  fill: var(--medium-gray);
}

.team-member h4 {
  margin-bottom: 5px;
}

.team-member p {
  color: var(--primary-red);
  font-weight: 500;
}

@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

.case-studies-page-section {
  padding: 80px 0;
}

.case-studies-filter {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 25px;
  background-color: var(--white);
  border: 2px solid var(--light-gray);
  border-radius: 25px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--primary-red);
  border-color: var(--primary-red);
  color: var(--white);
}

.filter-btn:focus {
  outline: 2px solid var(--primary-red);
  outline-offset: 2px;
}

.case-studies-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 1024px) {
  .case-studies-full-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .case-studies-full-grid {
    grid-template-columns: 1fr;
  }
}

.contact-page-section {
  padding: 80px 0;
}

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

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

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 500;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 15px;
  font-size: 1rem;
  font-family: inherit;
  border: 2px solid var(--light-gray);
  border-radius: 4px;
  transition: border-color 0.3s ease;
}

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

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

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

.contact-info-list {
  margin-bottom: 40px;
}

.contact-info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background-color: var(--primary-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--white);
}

.contact-info-content h4 {
  margin-bottom: 5px;
}

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

.contact-info-content a {
  color: var(--primary-red);
  font-weight: 500;
}

.contact-map {
  height: 300px;
  background-color: var(--light-gray);
  border-radius: 8px;
  overflow: hidden;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

.find-branch-section {
  background-color: var(--light-gray);
  padding: 80px 0;
  text-align: center;
}

.find-branch-content {
  max-width: 600px;
  margin: 0 auto;
}

.find-branch-content h2 {
  margin-bottom: 15px;
}

.find-branch-content p {
  color: var(--medium-gray);
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .find-branch-section {
    padding: 50px 0;
  }
}
