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

:root {
  --primary-red: #C82D2D;
  --primary-red-dark: #B52A2A;
  --dark-text: #222222;
  --white: #FFFFFF;
  --light-gray: #F8F8F8;
  --subtle-gray: #B0B0B0;
  --font-primary: 'Montserrat', Arial, sans-serif;
  --header-height: 80px;
  --header-height-scrolled: 60px;
  --transition-base: 0.3s ease-in-out;
  --transition-fast: 0.2s ease-out;
}

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

html {
  scroll-behavior: smooth;
}

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

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

ul, ol {
  list-style: none;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: inherit;
}

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

.section {
  padding: 80px 0;
}

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

h1 {
  font-size: clamp(32px, 5vw, 48px);
}

h2 {
  font-size: clamp(28px, 4vw, 36px);
}

h3 {
  font-size: clamp(20px, 3vw, 24px);
}

h4 {
  font-size: 18px;
}

p {
  margin-bottom: 16px;
}

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

.text-accent {
  color: var(--primary-red);
}

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

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--white);
  border: 2px solid var(--subtle-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-base);
  z-index: 998;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top svg {
  width: 20px;
  height: 20px;
  fill: var(--dark-text);
  transition: var(--transition-fast);
}

.back-to-top:hover {
  border-color: var(--primary-red);
}

.back-to-top:hover svg {
  fill: var(--primary-red);
}

.back-to-top .progress-ring {
  position: absolute;
  top: -2px;
  left: -2px;
  width: 50px;
  height: 50px;
  transform: rotate(-90deg);
}

.back-to-top .progress-ring circle {
  fill: none;
  stroke: var(--primary-red);
  stroke-width: 2;
  stroke-dasharray: 138;
  stroke-dashoffset: 138;
  transition: stroke-dashoffset 0.3s ease;
}

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

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

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

.logo {
  display: flex;
  flex-direction: column;
}

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

.logo-tagline {
  font-size: 10px;
  color: var(--subtle-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
}

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

.nav-desktop a {
  font-size: 14px;
  font-weight: 500;
  color: var(--dark-text);
  position: relative;
  padding: 5px 0;
  transition: var(--transition-fast);
}

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

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

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

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

.nav-desktop a.active {
  color: var(--primary-red);
}

/* CTA Button */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background-color: var(--primary-red);
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
  border-radius: 9999px;
  transition: var(--transition-fast);
}

.cta-button:hover {
  background-color: var(--primary-red-dark);
  transform: scale(1.02);
  color: var(--white);
}

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

.cta-button.secondary {
  background-color: transparent;
  border: 1px solid var(--subtle-gray);
  color: var(--dark-text);
}

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

/* Mobile Menu Button */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--dark-text);
  transition: var(--transition-fast);
}

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

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

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

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 400px;
  height: 100vh;
  background-color: var(--white);
  z-index: 1001;
  transition: right 0.3s ease-in-out;
  overflow-y: auto;
  padding: 80px 30px 30px;
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
  right: 0;
}

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

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

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

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

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav a {
  font-size: 18px;
  font-weight: 500;
  color: var(--dark-text);
  padding: 10px 0;
  border-bottom: 1px solid var(--light-gray);
  transition: var(--transition-fast);
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--primary-red);
}

.mobile-nav .cta-button {
  margin-top: 20px;
  width: 100%;
  text-align: center;
}

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-base);
}

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

/* Mobile Fixed CTA */
.mobile-fixed-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--primary-red);
  padding: 15px 20px;
  z-index: 999;
  text-align: center;
}

.mobile-fixed-cta a {
  color: var(--white);
  font-weight: 600;
  font-size: 16px;
  display: block;
}

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

.hero::before {
  content: '';
  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%);
}

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

.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero p {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.hero .cta-button {
  font-size: 16px;
  padding: 16px 32px;
}

/* Hero Animation */
.hero-content {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out forwards;
}

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

.hero .cta-button {
  animation: pulse 2s ease-in-out infinite;
}

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

.hero .cta-button:hover {
  animation: none;
}

/* Core Services Section */
.services-overview {
  background-color: var(--white);
}

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

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

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

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: var(--white);
  border-radius: 10px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: var(--transition-fast);
}

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

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

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

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

.service-card p {
  color: var(--subtle-gray);
  margin-bottom: 20px;
}

.service-card .cta-button {
  font-size: 14px;
  padding: 10px 20px;
}

/* How We Help Section */
.how-we-help {
  background-color: var(--light-gray);
  position: relative;
}

.how-we-help::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.02;
  pointer-events: none;
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.help-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.help-item-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--primary-red);
}

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

.help-item p {
  color: var(--subtle-gray);
  font-size: 14px;
  margin-bottom: 0;
}

/* Why Choose Us Section */
.why-choose-us {
  background-color: var(--white);
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.why-us-card {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: var(--transition-fast);
}

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

.why-us-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.why-us-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-base);
}

.why-us-card:hover .why-us-card-image img {
  transform: scale(1.05);
}

.why-us-card-content {
  padding: 25px;
}

.why-us-card-content h3 {
  margin-bottom: 10px;
}

.why-us-card-content p {
  color: var(--subtle-gray);
  margin-bottom: 0;
}

/* Testimonials Section */
.testimonials {
  background-color: var(--light-gray);
  position: relative;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.02;
  pointer-events: none;
}

.testimonials-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

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

.testimonial-card {
  min-width: 100%;
  padding: 40px;
  background-color: var(--white);
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.testimonial-stars {
  color: #FFB800;
  margin-bottom: 20px;
  font-size: 20px;
}

.testimonial-quote {
  font-size: 18px;
  font-style: italic;
  color: var(--dark-text);
  margin-bottom: 20px;
  line-height: 1.8;
}

.testimonial-author {
  font-weight: 600;
  color: var(--dark-text);
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--subtle-gray);
  cursor: pointer;
  transition: var(--transition-fast);
}

.testimonial-dot.active {
  background-color: var(--primary-red);
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.testimonial-nav button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--subtle-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

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

.testimonial-nav button:hover svg {
  fill: var(--white);
}

.testimonial-nav button svg {
  width: 16px;
  height: 16px;
  fill: var(--dark-text);
}

/* CTA Section */
.cta-section {
  background-color: var(--primary-red);
  text-align: center;
  padding: 60px 0;
}

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

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  font-size: 18px;
}

.cta-section .cta-button {
  background-color: var(--white);
  color: var(--primary-red);
}

.cta-section .cta-button:hover {
  background-color: var(--light-gray);
  transform: scale(1.02);
}

/* Footer */
.footer {
  background-color: var(--dark-text);
  color: var(--white);
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

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

.footer-brand .logo img {
  height: 40px;
}

.footer-brand p {
  color: var(--subtle-gray);
  font-size: 14px;
  margin-bottom: 20px;
}

.footer-contact p {
  color: var(--subtle-gray);
  font-size: 14px;
  margin-bottom: 10px;
}

.footer-contact a {
  color: var(--white);
  transition: var(--transition-fast);
}

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

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

.footer-links a {
  display: block;
  color: var(--subtle-gray);
  font-size: 14px;
  margin-bottom: 12px;
  transition: var(--transition-fast);
}

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

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

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--subtle-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

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

.footer-social svg {
  width: 16px;
  height: 16px;
  fill: var(--subtle-gray);
  transition: var(--transition-fast);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  color: var(--subtle-gray);
  font-size: 13px;
  margin-bottom: 0;
}

/* Page Hero */
.page-hero {
  padding-top: calc(var(--header-height) + 60px);
  padding-bottom: 60px;
  background-color: var(--light-gray);
  text-align: center;
}

.page-hero h1 {
  margin-bottom: 15px;
}

.page-hero p {
  color: var(--subtle-gray);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

/* Services Page */
.services-detailed {
  background-color: var(--white);
}

.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 80px;
}

.service-block:last-child {
  margin-bottom: 0;
}

.service-block.reverse {
  direction: rtl;
}

.service-block.reverse > * {
  direction: ltr;
}

.service-block-image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-block-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.service-block-content h3 {
  margin-bottom: 15px;
}

.service-block-content p {
  color: var(--subtle-gray);
  margin-bottom: 20px;
}

/* Full Service List */
.full-services {
  background-color: var(--light-gray);
}

.services-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.services-list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  background-color: var(--white);
  border-radius: 8px;
  transition: var(--transition-fast);
}

.services-list-item:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.services-list-item svg {
  width: 20px;
  height: 20px;
  fill: var(--primary-red);
  flex-shrink: 0;
}

.services-list-item span {
  font-size: 15px;
}

/* Process Section */
.our-process {
  background-color: var(--white);
}

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

.process-step {
  text-align: center;
  position: relative;
}

.process-step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--primary-red);
  color: var(--white);
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.process-step h4 {
  margin-bottom: 10px;
}

.process-step p {
  color: var(--subtle-gray);
  font-size: 14px;
  margin-bottom: 0;
}

/* Gallery Page */
.gallery-section {
  background-color: var(--white);
}

.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 10px 24px;
  border-radius: 9999px;
  border: 1px solid var(--subtle-gray);
  background-color: transparent;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark-text);
  transition: var(--transition-fast);
  cursor: pointer;
}

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

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: var(--transition-base);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 50%);
  opacity: 0;
  transition: var(--transition-base);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}

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

.gallery-overlay h4 {
  color: var(--white);
  margin-bottom: 5px;
}

.gallery-overlay p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin-bottom: 0;
}

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

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

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

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

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  width: 40px;
  height: 40px;
  cursor: pointer;
}

.lightbox-close::before,
.lightbox-close::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 2px;
  background-color: var(--white);
}

.lightbox-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.lightbox-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.lightbox-nav:hover {
  background-color: var(--primary-red);
}

.lightbox-nav.prev {
  left: -70px;
}

.lightbox-nav.next {
  right: -70px;
}

.lightbox-nav svg {
  width: 20px;
  height: 20px;
  fill: var(--white);
}

/* About Page */
.our-story {
  background-color: var(--white);
}

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

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

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

.our-values {
  background-color: var(--light-gray);
}

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

.value-card {
  text-align: center;
  padding: 40px 30px;
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: var(--transition-fast);
}

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

.value-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background-color: var(--light-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-icon svg {
  width: 32px;
  height: 32px;
  fill: var(--primary-red);
}

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

.value-card p {
  color: var(--subtle-gray);
  margin-bottom: 0;
}

/* Team Section */
.our-team {
  background-color: var(--white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

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

.team-image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 4px solid var(--light-gray);
}

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

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

.team-card .title {
  color: var(--primary-red);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 10px;
}

.team-card p {
  color: var(--subtle-gray);
  font-size: 14px;
  margin-bottom: 0;
}

/* Contact Page */
.contact-section {
  background-color: var(--white);
}

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

.contact-form {
  background-color: var(--white);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 8px;
  color: var(--dark-text);
}

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--subtle-gray);
  border-radius: 8px;
  font-size: 15px;
  transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-red);
  box-shadow: 0 0 0 3px rgba(200, 45, 45, 0.1);
}

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

.contact-form .cta-button {
  width: 100%;
}

.contact-info {
  padding: 40px 0;
}

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

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

.contact-info-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--primary-red);
}

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

.contact-info-item p {
  color: var(--subtle-gray);
  margin-bottom: 0;
}

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

.contact-info-item a:hover {
  text-decoration: underline;
}

/* FAQ Section */
.faq-section {
  background-color: var(--light-gray);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  background-color: var(--white);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.accordion-header {
  width: 100%;
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  color: var(--dark-text);
  transition: var(--transition-fast);
}

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

.accordion-header-icon {
  width: 24px;
  height: 24px;
  position: relative;
  flex-shrink: 0;
}

.accordion-header-icon::before,
.accordion-header-icon::after {
  content: '';
  position: absolute;
  background-color: var(--primary-red);
  transition: var(--transition-fast);
}

.accordion-header-icon::before {
  width: 16px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.accordion-header-icon::after {
  width: 2px;
  height: 16px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.accordion-item.active .accordion-header-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
}

.accordion-content-inner {
  padding: 0 25px 20px;
  color: var(--subtle-gray);
  line-height: 1.7;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .mobile-menu {
    display: block;
  }
  
  .mobile-fixed-cta {
    display: block;
  }
  
  .back-to-top {
    bottom: 80px;
    right: 20px;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .hero {
    min-height: 80vh;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .help-grid {
    grid-template-columns: 1fr;
  }
  
  .why-us-grid {
    grid-template-columns: 1fr;
  }
  
  .service-block {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .service-block.reverse {
    direction: ltr;
  }
  
  .process-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .process-step::after {
    display: none;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .lightbox-nav.prev {
    left: 10px;
  }
  
  .lightbox-nav.next {
    right: 10px;
  }
  
  .lightbox-nav {
    width: 40px;
    height: 40px;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  html {
    scroll-behavior: auto;
  }
  
  .hero-content {
    opacity: 1;
    transform: none;
  }
  
  .hero .cta-button {
    animation: none;
  }
}

/* Scroll Animation Classes */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

.fade-in {
  opacity: 0;
  transition: opacity 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
}

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

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

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

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