/* ================ BASE STYLES ================ */
:root {
  /* Color System */
  --color-red: #E31937;
  --color-red-dark: #A00C27;
  --color-red-light: rgba(227, 25, 55, 0.1);
  --color-white: #FFFFFF;
  --color-black: #1A1A1A;
  --color-gray: #F5F5F5;
  --color-dark-gray: #333333;
  --color-light-gray: #F9F9F9;
  
  /* Typography */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 3rem;
  --space-xl: 4rem;
}

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

body {
  font-family: var(--font-body);
  color: var(--color-dark-gray);
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: 80px; /* Space for fixed navigation */
}

/* ================ LAYOUT & UTILITIES ================ */
.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

section {
  padding: var(--space-xl) 0;
  position: relative;
}

/* ================ BACKGROUND ================ */
.gradient-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-white) 0%, var(--color-red-light) 50%, rgba(227, 25, 55, 0.3) 100%);
  z-index: -1;
  animation: gradientShift 15s ease infinite alternate;
  background-size: 200% 200%;
}

@keyframes gradientShift {
  0% { background-position: 0% 0%; }
  100% { background-position: 100% 100%; }
}

/* ================ NAVIGATION ================ */
.nav-system {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem var(--space-md);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
}

.logo-mark {
  height: 2.2rem;
  transition: transform 0.3s ease;
}

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

.logo-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-black);
}

.nav-motto {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-red);
  opacity: 0.8;
}

.nav-main {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-grid {
  display: flex;
  gap: var(--space-md);
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-item {
  position: relative;
}

.nav-link {
  position: relative;
  display: block;
  padding: var(--space-xs) 0;
  color: var(--color-black);
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

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

.nav-underline {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}

.nav-item:hover .nav-underline {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-item.active .nav-link {
  color: var(--color-red);
}

.nav-item.active .nav-underline {
  transform: scaleX(1);
}

.nav-dropmenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 32rem;
  padding: var(--space-md);
  background: var(--color-white);
  border-radius: 0 0 8px 8px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  display: flex;
  gap: var(--space-md);
}

.nav-dropdown:hover .nav-dropmenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropmenu-column {
  flex: 1;
}

.dropmenu-column h3 {
  font-size: 0.8rem;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-red);
  margin-bottom: var(--space-sm);
  padding-bottom: var(--space-xs);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.dropmenu-column a {
  display: block;
  padding: var(--space-xs) 0;
  color: var(--color-black);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.dropmenu-column a:hover {
  color: var(--color-red);
  padding-left: var(--space-xs);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: var(--space-xs);
  cursor: pointer;
  z-index: 1100;
}

.toggle-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-black);
  margin: 5px 0;
  transition: all 0.3s ease;
}

/* ================ HERO SECTION ================ */
.hero {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  position: relative;
}

.hero-content {
  max-width: 800px;
}

.hero h1 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

.hero h1 .line {
  display: block;
  overflow: hidden;
}

.hero h1 .highlight {
  color: var(--color-red);
  position: relative;
}

.hero h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: rgba(227, 25, 55, 0.3);
  z-index: -1;
}

.subtitle {
  font-size: 1.2rem;
  margin-bottom: var(--space-lg);
  color: var(--color-dark-gray);
  max-width: 600px;
}

.hero-cta {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.cta-button {
  display: inline-block;
  padding: var(--space-sm) var(--space-md);
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-button.primary {
  background: var(--color-red);
  color: var(--color-white);
  box-shadow: 0 5px 15px rgba(227, 25, 55, 0.3);
}

.cta-button.primary:hover {
  background: var(--color-red-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(227, 25, 55, 0.4);
}

.cta-button.secondary {
  background: transparent;
  color: var(--color-red);
  border: 1px solid var(--color-red);
}

.cta-button.secondary:hover {
  background: var(--color-red-light);
  transform: translateY(-3px);
}

/* ================ SOLUTIONS SECTION ================ */
.solutions {
  background: var(--color-light-gray);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-header h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: var(--space-sm);
}

.section-header h2 span {
  color: var(--color-red);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-dark-gray);
  max-width: 700px;
  margin: 0 auto;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-md);
}

.solution-card {
  background: var(--color-white);
  border-radius: 8px;
  padding: var(--space-lg);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

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

.card-icon {
  width: 60px;
  height: 60px;
  background: var(--color-red-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.solution-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: var(--space-sm);
}

.solution-card p {
  margin-bottom: var(--space-md);
  color: var(--color-dark-gray);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--color-red);
  font-weight: 600;
  text-decoration: none;
}

.card-link::after {
  content: "→";
  transition: transform 0.3s ease;
}

.card-link:hover::after {
  transform: translateX(3px);
}

/* ================ PARTNERS SECTION ================ */
.partners {
  background: var(--color-white);
}

.partners-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-xl);
  margin-top: var(--space-md);
}

/* ================ ABOUT SECTION ================ */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about-text h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
}

.about-text h2 span {
  color: var(--color-red);
}

.about-text p {
  margin-bottom: var(--space-md);
  max-width: 600px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

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

.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-red);
  margin-bottom: var(--space-xs);
}

.stat-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-dark-gray);
}

.about-image {
  background: var(--color-gray);
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
}

/* ================ CONTACT SECTION ================ */
.contact {
  background: var(--color-light-gray);
}

.contact-card-system {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-nav {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
}

.contact-nav-item {
  background: none;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  cursor: pointer;
  opacity: 0.7;
  transition: all 0.3s ease;
  padding: var(--space-xs);
}

.contact-nav-item.active,
.contact-nav-item:hover {
  opacity: 1;
}

.nav-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-red);
  opacity: 0.3;
  transition: all 0.3s ease;
}

.contact-nav-item.active .nav-dot,
.contact-nav-item:hover .nav-dot {
  opacity: 1;
  transform: scale(1.2);
}

.nav-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-dark-gray);
  white-space: nowrap;
}

.contact-nav-item.active .nav-label {
  color: var(--color-red);
}

.contact-cards-wrapper {
  position: relative;
  min-height: 500px;
}

.contact-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--color-white);
  border-radius: 8px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.6s ease;
  z-index: 1;
}

.contact-card.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  z-index: 2;
}

.card-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.contact-info-side {
  background: var(--color-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.card-form-side {
  padding: var(--space-lg);
  background: var(--color-white);
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.card-image {
  height: 200px;
  background: var(--color-light-gray);
}

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

.card-details {
  padding: var(--space-lg);
}

.card-details h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: var(--space-xs);
  color: var(--color-black);
}

.card-title {
  font-size: 1rem;
  color: var(--color-red);
  margin-bottom: var(--space-lg);
  font-weight: 600;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-method {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.contact-method svg {
  flex-shrink: 0;
}

/* Form Styles */
.form-group {
  margin-bottom: var(--space-md);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: var(--space-sm);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  font-family: var(--font-body);
  transition: all 0.3s ease;
}

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

.submit-button {
  width: 100%;
  padding: var(--space-sm);
  background: var(--color-red);
  color: var(--color-white);
  border: none;
  border-radius: 4px;
  font-family: var(--font-heading);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-button:hover {
  background: var(--color-red-dark);
}

/* ================ FOOTER ================ */
.main-footer {
  background: var(--color-black);
  color: var(--color-white);
  padding: var(--space-xl) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: var(--space-md);
  color: var(--color-white);
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: var(--space-xs);
}

.footer-col a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-col a:hover {
  color: var(--color-white);
  padding-left: var(--space-xs);
}

.footer-logo {
  height: 40px;
  margin-bottom: var(--space-md);
}

.footer-bottom {
  padding: var(--space-md) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ================ ANIMATIONS ================ */
[data-aos] {
  transition: all 0.8s ease;
  opacity: 0;
}

[data-aos="fade-up"] {
  transform: translateY(30px);
}

[data-aos="fade-right"] {
  transform: translateX(-30px);
}

[data-aos="fade-left"] {
  transform: translateX(30px);
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translate(0);
}

/* ================ RESPONSIVE ADJUSTMENTS ================ */
@media (max-width: 1024px) {
  .nav-container {
    padding: var(--space-sm);
  }
  
  .nav-main {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--color-white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }

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

  .nav-grid {
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
  }

  .nav-dropmenu {
    position: static;
    width: 100%;
    max-width: 300px;
    transform: none;
    box-shadow: none;
    display: none;
    padding: var(--space-sm) 0 0;
  }

  .nav-dropdown.active .nav-dropmenu {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
  }

  .nav-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .nav-toggle.active .toggle-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle.active .toggle-line:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active .toggle-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .card-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-cta {
    flex-direction: column;
  }

  .card-image {
    height: 150px;
  }
}

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

  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* Partners Slider Styles */
.partners-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-top: var(--space-lg);
}

.partners-track {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    width: max-content;
    will-change: transform;
    animation: scroll 30s linear infinite;
}

.partner-logo {
    flex-shrink: 0;
    width: 150px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.partner-logo:hover {
    opacity: 1;
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.partner-logo:hover img {
    filter: grayscale(0%);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .partner-logo {
        width: 120px;
        height: 60px;
    }
    
    .partners-track {
        gap: var(--space-lg);
    }
}
/* ================ CONTACT PAGE STYLES ================ */
.contact-page {
    padding-top: 80px;
}

.contact-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('../assets/contact/hero-bg.jpg') center/cover no-repeat fixed;
    color: var(--color-white);
    min-height: 60vh;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
}

.contact-hero h1 {
    color: var(--color-white);
}

.contact-hero .highlight::after {
    background-color: rgba(227, 25, 55, 0.5);
}

.contact-hero .hero-cta {
    margin-top: var(--space-lg);
    display: flex;
    gap: var(--space-md);
    justify-content: center;
}

/* Contact Cards */
.contact-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.card-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.card-image {
    height: 100%;
    position: relative;
    overflow: hidden;
}

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

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

.card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}

.card-image-text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    z-index: 2;
}

.card-image-text h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 5px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.card-image-text p {
    font-size: 1rem;
    opacity: 0.9;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.card-details {
    padding: var(--space-lg);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-top: var(--space-md);
}

.contact-method {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.card-form-side {
    padding: var(--space-lg);
    background: var(--color-light-gray);
}

/* CTA Section */
.contact-cta {
    background: var(--color-red);
    color: white;
    padding: var(--space-xl) 0;
    text-align: center;
}

.contact-cta .container {
    max-width: 800px;
}

.contact-cta h2 {
    color: white;
    margin-bottom: var(--space-md);
}

.contact-cta p {
    margin-bottom: var(--space-lg);
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
}

/* Button Variants */
.cta-button.white {
    background: white;
    color: var(--color-red);
    border: 2px solid white;
}

.cta-button.white:hover {
    background: rgba(255,255,255,0.9);
}

.cta-button.outline-white {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-button.outline-white:hover {
    background: rgba(255,255,255,0.1);
}

/* Location Section */
.location-section {
    padding: var(--space-xl) 0;
    background: white;
    position: relative;
}

.location-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/texture-light.jpg') center/cover no-repeat;
    opacity: 0.03;
    z-index: 0;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    margin-top: var(--space-lg);
    position: relative;
    z-index: 1;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.detail-item {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.detail-item svg {
    flex-shrink: 0;
    color: var(--color-red);
    margin-top: 4px;
}

.detail-item h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: var(--space-xs);
    color: var(--color-black);
}

/* FAQ Section */
.faq-section {
    padding: var(--space-xl) 0;
    background: url('assets/pattern-grid.png') repeat;
    background-size: 300px;
    background-color: var(--color-light-gray);
}

.faq-accordion {
    max-width: 800px;
    margin: var(--space-lg) auto 0;
}

.accordion-item {
    margin-bottom: var(--space-sm);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    background: var(--color-white);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.accordion-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.accordion-header {
    width: 100%;
    padding: var(--space-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.accordion-header svg {
    transition: transform 0.3s ease;
}

.accordion-header.active svg {
    transform: rotate(180deg);
}

.accordion-content {
    padding: 0 var(--space-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-item.active .accordion-content {
    padding: 0 var(--space-md) var(--space-md);
    max-height: 300px;
}

.faq-cta {
    text-align: center;
    margin-top: var(--space-lg);
    font-size: 1.1rem;
}

.faq-cta a {
    color: var(--color-red);
    font-weight: 600;
    text-decoration: none;
}

.faq-cta a:hover {
    text-decoration: underline;
}

/* Emergency CTA Animation */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255,255,255,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

.contact-cta .cta-button.white {
    animation: pulse 2s infinite;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .card-content {
        grid-template-columns: 1fr;
    }
    
    .card-image {
        height: 250px;
    }
    
    .location-content {
        grid-template-columns: 1fr;
    }
    
    .map-container {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        min-height: 70vh;
        background-attachment: scroll;
    }
    
    .contact-hero .hero-cta,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-hero .cta-button,
    .cta-buttons .cta-button {
        width: 100%;
        max-width: 280px;
        margin-bottom: var(--space-sm);
    }
    
    .card-image-text h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .contact-hero h1 {
        font-size: 2.5rem;
    }
    
    .contact-nav {
        flex-direction: column;
    }
    
    .card-image {
        height: 200px;
    }
    
    .card-image-text h3 {
        font-size: 1.3rem;
    }
}

/* ================ ABOUT PAGE STYLES ================ */
.about-page {
    padding-top: 80px;
}

/* Hero Section */
.about-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
}

.about-hero h1 {
    color: var(--color-white);
}

.about-hero .highlight::after {
    background-color: rgba(227, 25, 55, 0.5);
}

/* About Section */
.about-section {
    padding: var(--space-xl) 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.about-text {
    max-width: 600px;
}

.about-text p {
    margin-bottom: var(--space-md);
}

.about-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Mission Section */
.mission-section {
    padding: var(--space-xl) 0;
    position: relative;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.mission-text {
    max-width: 600px;
}

.mission-text h2 {
    margin-bottom: var(--space-md);
}

.mission-text h3 {
    margin: var(--space-lg) 0 var(--space-sm);
    color: var(--color-red);
}

.mission-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.mission-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Timeline Section */
.timeline-section {
    padding: var(--space-xl) 0;
    background: var(--color-light-gray);
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    padding-top: var(--space-md);
}

.timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 40px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    height: 100%;
    width: 2px;
    background: var(--color-red);
}

.timeline-year {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-red);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
}

.timeline-item h3 {
    margin-bottom: var(--space-xs);
    color: var(--color-black);
}

/* Team Section */
.team-section {
    padding: var(--space-xl) 0;
    background: white;
}

.team-member {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-image {
    height: 300px;
    overflow: hidden;
}

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

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.member-info {
    padding: 20px;
    text-align: center;
}

.member-info h3 {
    margin-bottom: 5px;
}

.position {
    color: var(--color-red);
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.bio {
    margin-bottom: var(--space-sm);
    font-size: 0.9rem;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.member-social img {
    width: 20px;
    height: 20px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.member-social img:hover {
    opacity: 1;
}

/* Values Section */
.values-section {
    padding: var(--space-xl) 0;
    background: var(--color-light-gray);
}

.value-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

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

.value-icon img {
    width: 30px;
    height: 30px;
}

.value-card h3 {
    margin-bottom: var(--space-sm);
    color: var(--color-black);
}

/* CTA Section */
.about-cta {
    padding: var(--space-xl) 0;
    text-align: center;
    background: var(--color-red);
    color: white;
}

.about-cta h2 {
    color: white;
    margin-bottom: var(--space-sm);
}

.about-cta p {
    margin-bottom: var(--space-lg);
    opacity: 0.9;
}

.about-cta .cta-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .about-content,
    .mission-content {
        grid-template-columns: 1fr;
    }
    
    .about-image,
    .mission-image {
        order: -1;
    }
    
    .team-member {
        max-width: 350px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .about-hero {
        min-height: 70vh;
    }
    
    .about-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-cta .cta-button {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .timeline-item {
        padding-left: 50px;
    }
    
    .timeline-year {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}