/* ===================================
   John's Chimney Service - About Page Styles
   =================================== */

/**
 * =====================================================
 * ABOUT HERO SECTION
 * =====================================================
 */
.about-hero {
  position: relative;
  min-height: 500px;
  background: linear-gradient(
    135deg,
    var(--dark-gray) 0%,
    var(--primary-red) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 70px;
  overflow: hidden;
}

@media (max-width: 480px) {
  .about-hero {
    min-height: 400px;
  }
}

.about-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.3;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23000000" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,213.3C1248,235,1344,213,1392,202.7L1440,192L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z"></path></svg>');
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
}

.about-hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.05;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 35px,
    rgba(255, 255, 255, 0.05) 35px,
    rgba(255, 255, 255, 0.05) 70px
  );
  animation: slide 20s linear infinite;
}

@keyframes slide {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(70px, 70px);
  }
}

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

.about-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 800px;
  padding: 0 20px;
  animation: fadeInUp 1s ease;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  margin-bottom: 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  animation: fadeInDown 1s ease 0.3s both;
}

.about-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--white);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  font-family: 'Merriweather', serif;
  animation: fadeInUp 1s ease 0.2s both;
}

@media (max-width: 768px) {
  .about-hero-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .about-hero-title {
    font-size: 2rem;
  }
}

.about-hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.95;
  max-width: 600px;
  margin: 0 auto;
  animation: fadeInUp 1s ease 0.4s both;
  color: white;
}

@media (max-width: 480px) {
  .about-hero-subtitle {
    font-size: 1rem;
  }
}

.about-hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  will-change: transform;
  transition: transform 0.15s linear, background 0.3s ease;
}

.about-hero-scroll:hover {
  background: rgba(255, 255, 255, 0.2);
}

.about-hero-scroll svg {
  width: 20px;
  height: 20px;
  color: var(--white);
  display: block;
  animation: bounceY 2s infinite;
  transition: transform 0.3s ease;
}

.about-hero-scroll:hover svg {
  transform: scale(1.1);
}

/**
 * =====================================================
 * INTRODUCTION SECTION
 * =====================================================
 */
.about-intro {
  padding: 5rem 0;
}

.intro-wrapper {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

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

.intro-content {
  animation: fadeInLeft 1s ease;
}

.intro-title {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 0.5rem;
}

@media (max-width: 480px) {
  .intro-title {
    font-size: 1.75rem;
  }
}

.title-underline {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-red), var(--bright-red));
  margin-bottom: 2rem;
  animation: expandWidth 1s ease 0.5s both;
}

@keyframes expandWidth {
  from {
    width: 0;
  }
  to {
    width: 80px;
  }
}

.intro-lead {
  font-size: 1.25rem;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-weight: 500;
}

@media (max-width: 480px) {
  .intro-lead {
    font-size: 1.1rem;
  }
}

.intro-content p {
  color: white;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.signature-section {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Signature styles for intro section specifically */
.intro-content .signature-script {
  font-family: 'Tangerine', 'Allura', cursive;
  font-size: 3.2rem;
  color: rgba(255, 255, 255, 0.4); /* Dark color with transparency */
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 0.2rem;
  line-height: 1;
}

@media (max-width: 480px) {
  .intro-content .signature-script {
    font-size: 2.5rem;
  }
}

.intro-content .signature-title {
  font-weight: 600;
  color: white;
  font-style: italic;
  font-size: 0.95rem;
  margin: 0;
}

/* Image Section */
.intro-image {
  position: relative;
  animation: fadeInRight 1s ease;
}

.image-frame {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

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

.image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--dark-gray);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.image-badge i {
  color: var(--primary-red);
}

.experience-badge {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--primary-red), var(--bright-red));
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 10px 40px rgba(154, 5, 24, 0.3);
  animation: rotateIn 1s ease 0.5s both;
}

@media (max-width: 480px) {
  .experience-badge {
    width: 100px;
    height: 100px;
    top: -20px;
    right: -20px;
  }
}

@keyframes rotateIn {
  from {
    transform: rotate(-180deg) scale(0);
    opacity: 0;
  }
  to {
    transform: rotate(0) scale(1);
    opacity: 1;
  }
}

.badge-number {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.25rem;
}

@media (max-width: 480px) {
  .badge-number {
    font-size: 1.5rem;
  }
}

.badge-text {
  font-size: 0.65rem;
  text-align: center;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

/**
 * =====================================================
 * TIMELINE SECTION
 * =====================================================
 */
.about-timeline {
  padding: 5rem 0;
  background: var(--light-gray);
  overflow: hidden;
}

.timeline-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 3rem auto 0;
  padding: 0 20px;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary-red), var(--bright-red));
  transform: translateX(-50%);
}

@media (max-width: 768px) {
  .timeline-line {
    left: 20px;
  }
}

.timeline-item {
  position: relative;
  padding: 2rem 0;
  opacity: 0;
  animation: fadeInTimeline 0.8s ease forwards;
}

.timeline-item:nth-child(even) {
  animation-delay: 0.2s;
}

.timeline-item:nth-child(odd) {
  animation-delay: 0.4s;
}

@keyframes fadeInTimeline {
  to {
    opacity: 1;
  }
}

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 2.5rem;
  width: 20px;
  height: 20px;
  background: var(--white);
  border: 4px solid var(--primary-red);
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 2;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .timeline-dot {
    left: 20px;
  }
}

.timeline-item:hover .timeline-dot {
  transform: translateX(-50%) scale(1.3);
  background: var(--bright-red);
}

.timeline-item::before {
  content: attr(data-year);
  position: absolute;
  left: 50%;
  top: 2rem;
  transform: translateX(-50%);
  background: var(--dark-gray);
  color: var(--white);
  padding: 0.25rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.875rem;
  z-index: 3;
}

@media (max-width: 768px) {
  .timeline-item::before {
    left: 20px;
    transform: translateX(-50%);
  }
}

.timeline-content {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  width: calc(50% - 60px);
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .timeline-content {
    width: calc(100% - 60px);
    margin-left: 60px !important;
  }
}

@media (max-width: 480px) {
  .timeline-content {
    padding: 1rem;
  }
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-left: auto;
  margin-right: 0;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: 0;
  margin-right: auto;
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.timeline-content h3 {
  color: var(--primary-red);
  margin-bottom: 0.5rem;
}

.timeline-content p {
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/**
 * =====================================================
 * VALUES SECTION
 * =====================================================
 */
.about-values {
  padding: 5rem 0;
  background: var(--white);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

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

.value-card {
  padding: 2rem;
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-red), var(--bright-red));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: rgba(154, 5, 24, 0.1);
}

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

.value-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(154, 5, 24, 0.1),
    rgba(224, 25, 33, 0.1)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.value-icon i {
  font-size: 2rem;
  color: var(--primary-red);
  transition: all 0.3s ease;
}

.value-card:hover .value-icon {
  background: linear-gradient(135deg, var(--primary-red), var(--bright-red));
  transform: rotate(360deg);
}

.value-card:hover .value-icon i {
  color: var(--white);
}

.value-card h3 {
  color: var(--dark-gray);
  margin-bottom: 1rem;
}

.value-card p {
  color: var(--text-light);
  line-height: 1.6;
}

/**
 * =====================================================
 * CREDENTIALS SECTION
 * =====================================================
 */
.about-credentials {
  padding: 5rem 0;
  background: linear-gradient(
    135deg,
    rgba(154, 5, 24, 0.05),
    rgba(224, 25, 33, 0.05)
  );
}

.credentials-wrapper {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

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

.credentials-content h2 {
  color: white;
  margin-bottom: 1rem;
}

.credentials-intro {
  color: white;
  font-size: 1.125rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.credential-list {
  margin-bottom: 2rem;
}

.credential-item {
  display: flex;
  align-items: start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: var(--white);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.credential-item:hover {
  transform: translateX(10px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.credential-item i {
  font-size: 1.5rem;
  color: var(--primary-red);
  width: 30px;
  flex-shrink: 0;
}

.credential-item h4 {
  color: var(--dark-gray);
  margin-bottom: 0.25rem;
  font-size: 1.125rem;
}

.credential-item p {
  color: var(--text-light);
  margin: 0;
  font-size: 0.95rem;
}

.guarantee-box {
  background: linear-gradient(135deg, var(--primary-red), var(--bright-red));
  color: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(154, 5, 24, 0.3);
  position: relative;
  overflow: hidden;
}

.guarantee-box::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 6rem;
  opacity: 0.2;
  font-family: Georgia, serif;
}

.guarantee-box h3 {
  color: var(--white);
  margin-bottom: 1rem;
}

.guarantee-box p {
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* Credentials Badges */
.credentials-badges {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.badge-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

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

.cert-badge {
  text-align: center;
  padding: 1.5rem;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

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

.cert-badge img {
  width: 80px;
  height: 80px;
  margin-bottom: 0.5rem;
}

.cert-badge span {
  display: block;
  font-weight: 600;
  color: var(--dark-gray);
  font-size: 0.9rem;
}

.years-badge {
  background: var(--dark-gray);
  color: var(--white);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.years-badge::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.05) 1px,
    transparent 1px
  );
  background-size: 20px 20px;
  animation: rotate 60s linear infinite;
}

@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}

.years-number {
  font-size: 4rem;
  font-weight: 700;
  color: var(--bright-red);
  text-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}

@media (max-width: 480px) {
  .years-number {
    font-size: 3rem;
  }
}

.years-text {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.years-subtitle {
  font-size: 0.9rem;
  opacity: 0.9;
  font-style: italic;
}
/* Credentials Badges */
.credentials-badges {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.badge-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

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

.cert-badge {
  text-align: center;
  padding: 1.5rem;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

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

.cert-badge img {
  width: 80px;
  height: 80px;
  margin-bottom: 0.5rem;
}

.cert-badge span {
  display: block;
  font-weight: 600;
  color: var(--dark-gray);
  font-size: 0.9rem;
}

.years-badge {
  background: var(--dark-gray);
  color: var(--white);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.years-badge::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.05) 1px,
    transparent 1px
  );
  background-size: 20px 20px;
  animation: rotate 60s linear infinite;
}

@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}

.years-number {
  font-size: 4rem;
  font-weight: 700;
  color: var(--bright-red);
  text-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}

@media (max-width: 480px) {
  .years-number {
    font-size: 3rem;
  }
}

.years-text {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.years-subtitle {
  font-size: 0.9rem;
  opacity: 0.9;
  font-style: italic;
}

/**
 * =====================================================
 * TEAM SECTION
 * =====================================================
 */
.about-team {
  padding: 5rem 0;
  background: var(--white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

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

.team-member {
  text-align: center;
  transition: all 0.3s ease;
}

.team-member.featured {
  grid-column: span 1;
}

.member-image {
  position: relative;
  width: 100%;
  max-width: 250px;
  margin: 0 auto 1.5rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.member-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: all 0.3s ease;
}

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

.member-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(154, 5, 24, 0.9), transparent);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.team-member:hover .member-overlay {
  opacity: 1;
}

.social-links {
  display: flex;
  gap: 1rem;
}

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

.social-links a:hover {
  background: var(--bright-red);
  color: var(--white);
  transform: translateY(-5px);
}

.member-info h3 {
  color: var(--dark-gray);
  margin-bottom: 0.25rem;
}

.member-role {
  color: var(--primary-red);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.member-bio {
  color: var(--text-light);
  line-height: 1.6;
}

.join-link {
  display: inline-block;
  margin-top: 0.5rem;
  color: var(--primary-red);
  font-weight: 600;
  transition: all 0.3s ease;
}

.join-link:hover {
  color: var(--bright-red);
  transform: translateX(5px);
}

/**
 * =====================================================
 * COMMUNITY SECTION
 * =====================================================
 */
.about-community {
  padding: 5rem 0;
  background: var(--light-gray);
}

.community-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

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

.community-content h2 {
  color: var(--dark-gray);
  margin-bottom: 1rem;
}

.community-lead {
  font-size: 1.125rem;
  color: var(--dark-gray);
  margin-bottom: 1rem;
  font-weight: 500;
}

.community-content p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.community-stats {
  display: flex;
  justify-content: space-around;
  padding: 2rem;
  background: var(--white);
  border-radius: 10px;
  margin-bottom: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

@media (max-width: 480px) {
  .community-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-red);
  display: block;
  margin-bottom: 0.5rem;
}

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

.community-involvement h3 {
  color: var(--dark-gray);
  margin-bottom: 1rem;
}

.community-involvement ul {
  list-style: none;
  padding: 0;
}

.community-involvement li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.community-involvement i {
  color: var(--bright-red);
  width: 20px;
}

/* Community Gallery */
.community-gallery {
  width: 100%;
}

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

.gallery-grid-uniform img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-grid-uniform img:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

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

  .gallery-grid-uniform img {
    height: 200px;
  }
}

.gallery-thumbs img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-thumbs img:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/**
 * =====================================================
 * TESTIMONIALS SECTION
 * =====================================================
 */
.about-testimonials {
  padding: 5rem 0;
  background: var(--white);
}

.testimonials-carousel {
  max-width: 900px;
  margin: 3rem auto 0;
  position: relative;
}

.testimonial-slide {
  display: none;
  animation: fadeIn 0.5s ease;
}

.testimonial-slide.active {
  display: block;
}

.testimonial-content {
  background: var(--light-gray);
  padding: 3rem;
  border-radius: 15px;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

@media (max-width: 480px) {
  .testimonial-content {
    padding: 2rem 1.5rem;
  }
}

.quote-mark {
  font-size: 4rem;
  color: var(--primary-red);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 2rem;
  font-style: italic;
}

@media (max-width: 480px) {
  .testimonial-text {
    font-size: 1.1rem;
  }
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary-red);
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-image i {
  font-size: 24px;
  color: white;
}

.author-info .stars {
  color: #ffd700;
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.author-name {
  font-weight: 600;
  color: var(--dark-gray);
  margin-bottom: 0.25rem;
}

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

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

.nav-prev,
.nav-next {
  width: 40px;
  height: 40px;
  border: 2px solid var(--primary-red);
  background: var(--white);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--primary-red);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.nav-prev:hover,
.nav-next:hover {
  background: var(--primary-red);
  color: var(--white);
}

.nav-dots {
  display: flex;
  gap: 0.5rem;
}

.nav-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(154, 5, 24, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-dots .dot.active {
  background: var(--primary-red);
  width: 30px;
  border-radius: 5px;
}

/**
 * =====================================================
 * FINAL CTA SECTION
 * =====================================================
 */
.about-cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary-red), var(--dark-gray));
  position: relative;
  overflow: hidden;
}

.about-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 20% 50%,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 50%
  );
}

.cta-wrapper {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

@media (max-width: 768px) {
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

@media (max-width: 480px) {
  .cta-features {
    flex-direction: column;
    gap: 1.5rem;
  }
}

.feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  opacity: 0.9;
}

.feature i {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
}

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

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

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

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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