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

:root {
  --primary-red: #CC2028;
  --primary-red-hover: #b31c23;
  --dark-grey: #222222;
  --white: #FFFFFF;
  --light-grey: #F5F5F5;
  --grey-medium: #e5e5e5;
  --text-dark: #222222;
  --text-light: #555555;
  --text-muted: #777777;
  
  --font-primary: 'Montserrat', sans-serif;
  --font-fallback: 'Open Sans', sans-serif;
  
  --transition-fast: 0.2s ease-in-out;
  --transition-medium: 0.3s ease-in-out;
  --transition-slow: 0.5s ease-out;
  
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
  
  --header-height-desktop: 80px;
  --header-height-tablet: 70px;
  --header-height-mobile: 60px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-fallback);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
  overflow-x: hidden;
}

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

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: clamp(1.125rem, 2vw, 1.375rem); }

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

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

ul {
  list-style: none;
}

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

.section {
  padding: 4rem 0;
}

.section--light {
  background-color: var(--light-grey);
}

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

.section--dark h2,
.section--dark h3,
.section--dark p {
  color: var(--white);
}

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

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

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

.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

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

@media (max-width: 640px) {
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8em 1.5em;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: 2px solid transparent;
}

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

.btn-primary:hover {
  background-color: var(--primary-red-hover);
  border-color: var(--primary-red-hover);
  transform: scale(1.05);
}

.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);
}

.btn--large {
  padding: 1em 2em;
  font-size: 1.125rem;
}

.btn--full {
  width: 100%;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height-mobile);
  background-color: var(--white);
  z-index: 1000;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.header.scrolled {
  height: 60px;
  box-shadow: var(--shadow-md);
}

.header.scrolled .header__logo img {
  height: 50px;
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

.header__logo img {
  height: 60px;
  width: auto;
  transition: height var(--transition-fast);
}

.header__nav {
  display: none;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.header__nav-link {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-dark);
  position: relative;
  padding: 0.5rem 0;
}

.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-red);
  transition: width var(--transition-fast);
}

.header__nav-link:hover::after,
.header__nav-link.active::after {
  width: 100%;
}

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

.header__cta {
  display: none;
}

.header__phone {
  display: none;
  font-family: var(--font-primary);
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.9rem;
}

.header__phone:hover {
  color: var(--primary-red);
}

/* Hamburger Menu */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger__line {
  width: 24px;
  height: 2px;
  background-color: var(--dark-grey);
  transition: all var(--transition-fast);
  position: relative;
}

.hamburger__line:nth-child(1) {
  transform: translateY(-6px);
}

.hamburger__line:nth-child(3) {
  transform: translateY(6px);
}

.hamburger.active .hamburger__line:nth-child(1) {
  transform: translateY(2px) rotate(45deg);
}

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

.hamburger.active .hamburger__line:nth-child(3) {
  transform: translateY(-2px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--white);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-medium);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu__close::before,
.mobile-menu__close::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: var(--dark-grey);
}

.mobile-menu__close::before {
  transform: rotate(45deg);
}

.mobile-menu__close::after {
  transform: rotate(-45deg);
}

.mobile-menu__logo {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
}

.mobile-menu__logo img {
  height: 50px;
}

.mobile-menu__nav {
  text-align: center;
}

.mobile-menu__list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-menu__link {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--text-dark);
  transition: color var(--transition-fast);
}

.mobile-menu__link:hover {
  color: var(--primary-red);
}

.mobile-menu__cta {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
}

.mobile-menu__cta .btn {
  font-size: 1.125rem;
  padding: 1em 2em;
}

/* Desktop Header */
@media (min-width: 1025px) {
  .header {
    height: var(--header-height-desktop);
  }
  
  .header.scrolled {
    height: 60px;
  }
  
  .header__logo img {
    height: 80px;
  }
  
  .header.scrolled .header__logo img {
    height: 60px;
  }
  
  .header__nav {
    display: block;
  }
  
  .header__cta {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  
  .header__phone {
    display: block;
  }
  
  .hamburger {
    display: none;
  }
  
  .mobile-menu {
    display: none !important;
  }
}

/* Tablet Header */
@media (min-width: 641px) and (max-width: 1024px) {
  .header {
    height: var(--header-height-tablet);
  }
  
  .header__logo img {
    height: 70px;
  }
  
  .header__nav {
    display: none;
  }
  
  .hamburger {
    display: flex;
  }
  
  .header__cta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  
  .header__phone {
    display: block;
    font-size: 0.85rem;
  }
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--header-height-mobile);
}

.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
  z-index: 0;
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  max-width: 800px;
  padding: 2rem;
}

.hero__title {
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero__subtitle {
  font-size: clamp(1rem, 3vw, 1.5rem);
  margin-bottom: 2rem;
  opacity: 0.95;
}

.hero__cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.hero__scroll-indicator span {
  display: block;
  width: 24px;
  height: 24px;
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(45deg);
  opacity: 0.7;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

.hero--page {
  min-height: 50vh;
  padding-top: var(--header-height-mobile);
}

.hero--page .hero__content {
  padding-top: 2rem;
}

@media (min-width: 1025px) {
  .hero {
    padding-top: var(--header-height-desktop);
  }
  
  .hero--page {
    min-height: 40vh;
    padding-top: var(--header-height-desktop);
  }
}

/* Service Cards */
.service-card {
  background: var(--white);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
  border: 1px solid var(--grey-medium);
}

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

.service-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
}

.service-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-card__title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.service-card__text {
  color: var(--text-light);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.service-card__link {
  font-family: var(--font-primary);
  font-weight: 600;
  color: var(--primary-red);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.service-card__link:hover {
  color: var(--primary-red-hover);
}

.service-card__link::after {
  content: '→';
  transition: transform var(--transition-fast);
}

.service-card__link:hover::after {
  transform: translateX(4px);
}

@media (max-width: 640px) {
  .service-card__icon {
    width: 48px;
    height: 48px;
  }
}

/* Trust Section */
.trust-section {
  position: relative;
}

.trust-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(135deg, rgba(0,0,0,0.02) 25%, transparent 25%, transparent 50%, rgba(0,0,0,0.02) 50%, rgba(0,0,0,0.02) 75%, transparent 75%, transparent);
  background-size: 20px 20px;
  pointer-events: none;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
}

.trust-item__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-red);
  border-radius: 50%;
  color: var(--white);
}

.trust-item__icon svg {
  width: 24px;
  height: 24px;
}

.trust-item__content h4 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.trust-item__content p {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Project Grid */
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.project-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4/3;
}

.project-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

.project-item:hover img {
  transform: scale(1.08);
}

.project-item__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 50%);
  opacity: 0;
  transition: opacity var(--transition-medium);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}

.project-item:hover .project-item__overlay {
  opacity: 1;
}

.project-item__title {
  color: var(--white);
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.project-item__category {
  color: rgba(255,255,255,0.8);
  font-size: 0.875rem;
}

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

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

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--dark-grey) 0%, #333333 100%);
  color: var(--white);
  text-align: center;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 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");
  pointer-events: none;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255,255,255,0.9);
  margin-bottom: 2rem;
  font-size: 1.125rem;
}

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

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

.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-primary);
  font-weight: 600;
  color: var(--white);
  font-size: 1.25rem;
  margin-top: 1.5rem;
}

.cta-phone:hover {
  color: var(--primary-red);
}

/* Footer */
.footer {
  background-color: var(--dark-grey);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer__title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--white);
}

.footer__about p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer__logo {
  margin-bottom: 1rem;
}

.footer__logo img {
  height: 60px;
}

.footer__links li {
  margin-bottom: 0.75rem;
}

.footer__links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

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

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

.footer__contact-item a {
  color: rgba(255,255,255,0.7);
}

.footer__contact-item a:hover {
  color: var(--primary-red);
}

.footer__contact-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.footer__social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.footer__social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  color: var(--white);
  transition: all var(--transition-fast);
}

.footer__social a:hover {
  background-color: var(--primary-red);
  border-color: var(--primary-red);
}

.footer__social svg {
  width: 18px;
  height: 18px;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__copyright {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
}

.footer__legal {
  display: flex;
  gap: 1.5rem;
}

.footer__legal a {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
}

.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;
    text-align: center;
  }
  
  .footer__contact-item {
    justify-content: center;
  }
  
  .footer__social {
    justify-content: center;
  }
  
  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* Page Hero Section */
.page-hero {
  padding-top: calc(var(--header-height-mobile) + 4rem);
  padding-bottom: 4rem;
  background: linear-gradient(135deg, var(--light-grey) 0%, var(--white) 100%);
  text-align: center;
}

.page-hero h1 {
  margin-bottom: 1rem;
}

.page-hero p {
  color: var(--text-light);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

@media (min-width: 1025px) {
  .page-hero {
    padding-top: calc(var(--header-height-desktop) + 4rem);
  }
}

/* Services Page */
.service-category {
  margin-bottom: 3rem;
}

.service-category__title {
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--primary-red);
  display: inline-block;
}

.service-list {
  display: grid;
  gap: 1rem;
}

.service-list__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.service-list__item:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.service-list__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-grey);
  border-radius: 50%;
  color: var(--primary-red);
  flex-shrink: 0;
}

.service-list__text {
  font-weight: 500;
}

/* Accordion */
.accordion {
  border: 1px solid var(--grey-medium);
  border-radius: 8px;
  overflow: hidden;
}

.accordion__item {
  border-bottom: 1px solid var(--grey-medium);
}

.accordion__item:last-child {
  border-bottom: none;
}

.accordion__header {
  width: 100%;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--white);
  border: none;
  cursor: pointer;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--text-dark);
  text-align: left;
  transition: background-color var(--transition-fast);
}

.accordion__header:hover {
  background-color: var(--light-grey);
}

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

.accordion__icon {
  width: 24px;
  height: 24px;
  transition: transform var(--transition-fast);
}

.accordion__item.active .accordion__icon {
  transform: rotate(180deg);
}

.accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-medium);
}

.accordion__item.active .accordion__content {
  max-height: 500px;
}

.accordion__body {
  padding: 1.5rem;
  background: var(--light-grey);
  color: var(--text-light);
}

.accordion__body ul {
  list-style: disc;
  margin-left: 1.5rem;
}

.accordion__body li {
  margin-bottom: 0.5rem;
}

/* About Page */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.team-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.team-card:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

.team-card__image {
  aspect-ratio: 1;
  background: var(--light-grey);
  overflow: hidden;
}

.team-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card__content {
  padding: 1.5rem;
  text-align: center;
}

.team-card__name {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.team-card__title {
  color: var(--primary-red);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.team-card__bio {
  color: var(--text-light);
  font-size: 0.9rem;
}

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

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

/* Testimonials */
.testimonial-slider {
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease-out;
}

.testimonial-card {
  flex: 0 0 100%;
  padding: 2rem;
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.testimonial-card__quote {
  font-size: 1.125rem;
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.testimonial-card__quote::before {
  content: '"';
  font-size: 3rem;
  color: var(--primary-red);
  line-height: 0;
  display: block;
  margin-bottom: 0.5rem;
}

.testimonial-card__author {
  font-weight: 700;
  color: var(--text-dark);
}

.testimonial-card__role {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.testimonial-card__stars {
  color: #f59e0b;
  margin-bottom: 1rem;
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.testimonial-nav button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--grey-medium);
  background: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.testimonial-nav button:hover {
  border-color: var(--primary-red);
  background: var(--primary-red);
  color: var(--white);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.testimonial-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--grey-medium);
  cursor: pointer;
  padding: 0;
}

.testimonial-dots button.active {
  background: var(--primary-red);
}

/* Gallery Page */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.filter-btn {
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--grey-medium);
  background: var(--white);
  border-radius: 25px;
  font-family: var(--font-primary);
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
}

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

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 1;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-medium);
  filter: grayscale(30%);
}

.gallery-item:hover img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

.gallery-item__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-medium);
  padding: 1rem;
  text-align: center;
}

.gallery-item:hover .gallery-item__overlay {
  opacity: 1;
}

.gallery-item__title {
  color: var(--white);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.gallery-item__desc {
  color: rgba(255,255,255,0.8);
  font-size: 0.875rem;
}

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

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

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

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-medium);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox__content {
  max-width: 90%;
  max-height: 90%;
  position: relative;
}

.lightbox__image {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
}

.lightbox__info {
  color: var(--white);
  text-align: center;
  margin-top: 1rem;
}

.lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white);
  font-size: 2rem;
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: var(--white);
  font-size: 1.5rem;
  transition: background var(--transition-fast);
}

.lightbox__nav:hover {
  background: var(--primary-red);
}

.lightbox__nav--prev {
  left: 1rem;
}

.lightbox__nav--next {
  right: 1rem;
}

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-form {
  background: var(--white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-family: var(--font-primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.form-group label span {
  color: var(--primary-red);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid var(--grey-medium);
  border-radius: 4px;
  font-family: var(--font-fallback);
  font-size: 1rem;
  transition: border-color var(--transition-fast);
}

.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;
}

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

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

.contact-info {
  padding: 2rem;
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-info__icon {
  width: 48px;
  height: 48px;
  background: var(--primary-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}

.contact-info__icon svg {
  width: 24px;
  height: 24px;
}

.contact-info__title {
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.contact-info__text {
  color: var(--text-light);
}

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

.map-container {
  margin-top: 2rem;
  border-radius: 8px;
  overflow: hidden;
  height: 300px;
}

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

/* Scroll Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--primary-red);
  z-index: 1001;
  transition: width 0.1s ease-out;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.4s ease-out;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.4s ease-out;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Focus States */
:focus-visible {
  outline: 2px solid var(--primary-red);
  outline-offset: 2px;
}

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