/* About Page Specific Styles */

/* Hero Section */
.about-hero {
  background: linear-gradient(135deg, var(--gunmetal) 0%, #2d1810 50%, #3d2415 100%);
  min-height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 120px 0 100px;
  overflow: visible;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(247, 189, 18, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.about-hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 40px 20px;
}

/* Google Reviews Badge */
.about-hero .google-reviews {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 8px 20px;
  margin-bottom: 30px;
  font-size: 14px;
  color: white;
}

.about-hero .stars {
  color: var(--brand-yellow);
  font-size: 16px;
}

.about-hero h1 {
  font-size: clamp(3.5rem, 10vw, 6rem);
  font-weight: 900;
  line-height: 0.9;
  margin: 20px 0 30px;
  color: white;
  text-transform: uppercase;
}

.about-hero .yellow-text {
  color: var(--brand-yellow);
}

.about-hero .subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-number {
  margin-top: 40px;
}

.hero-number .number {
  display: inline-block;
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 50%;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

/* Trusted Brands Section */
.trusted-brands {
  padding: 80px 0;
  background: var(--offwhite);
}

.trusted-brands h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  text-align: center;
  color: var(--ink);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.trusted-brands .section-subtitle {
  text-align: center;
  font-size: 1.25rem;
  color: var(--gunmetal);
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: center;
}

.brand-logo {
  text-align: center;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.brand-logo:hover {
  opacity: 1;
}

.brand-logo img {
  max-width: 150px;
  height: 60px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.brand-logo:hover img {
  filter: grayscale(0%);
}

.brand-placeholder {
  font-size: 14px;
  font-weight: 700;
  color: var(--gunmetal);
  padding: 20px;
  border: 2px dashed var(--muted);
  border-radius: var(--r);
  text-transform: uppercase;
}

/* Agency Description Section */
.agency-description {
  padding: 100px 0;
  background: var(--brand-yellow);
}

.agency-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.agency-text h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 30px;
  text-transform: uppercase;
  line-height: 1.1;
}

.agency-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--ink);
}

.agency-image {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.agency-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.agency-image .image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: var(--gunmetal);
  color: var(--brand-yellow);
  font-size: 4rem;
  position: absolute;
  top: 0;
  left: 0;
}

/* Services Section */
.about-services {
  padding: 100px 0;
  background: var(--ink);
}

.about-services h2 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  text-align: center;
  color: white;
  margin-bottom: 20px;
  text-transform: uppercase;
  line-height: 1.1;
}

.about-services .section-subtitle {
  text-align: center;
  font-size: 1.25rem;
  color: var(--muted);
  margin-bottom: 80px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-item {
  text-align: center;
}

.service-icon {
  width: 80px;
  height: 80px;
  background: var(--brand-yellow);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 30px;
}

.service-item h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.service-item p {
  color: var(--muted);
  line-height: 1.6;
  font-size: 1rem;
}

/* Care Section */
.care-section {
  padding: 100px 0;
  background: var(--offwhite);
}

.care-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.care-image {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.care-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.care-image .image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: var(--gunmetal);
  color: var(--brand-yellow);
  font-size: 4rem;
  position: absolute;
  top: 0;
  left: 0;
}

.care-text h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 30px;
  text-transform: uppercase;
  line-height: 1.1;
}

.care-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--gunmetal);
  margin-bottom: 20px;
}

/* Team Section */
.team-section {
  padding: 100px 0;
  background: var(--ink);
}

.team-section h2 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  text-align: center;
  color: white;
  margin-bottom: 20px;
  text-transform: uppercase;
  line-height: 1.1;
}

.team-section .yellow-text {
  color: var(--brand-yellow);
}

.team-section .section-subtitle {
  text-align: center;
  font-size: 1.25rem;
  color: var(--muted);
  margin-bottom: 80px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.team-member {
  text-align: center;
}

.member-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--r);
  overflow: hidden;
  margin-bottom: 30px;
  background: var(--brand-yellow);
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-image .image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: var(--brand-yellow);
  color: var(--ink);
  font-size: 4rem;
  position: absolute;
  top: 0;
  left: 0;
}

.team-member h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.team-member p {
  color: var(--muted);
  font-size: 1rem;
}

/* CTA Section */
.about-cta {
  padding: 100px 0;
  background: var(--ink);
  text-align: center;
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.cta-avatars {
  display: flex;
  justify-content: center;
  gap: -10px;
  margin-bottom: 30px;
}

.avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gunmetal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 -5px;
  border: 3px solid var(--ink);
  overflow: hidden;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-cta h2 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  color: white;
  margin-bottom: 20px;
  text-transform: uppercase;
  line-height: 1.1;
}

.about-cta .yellow-text {
  color: var(--brand-yellow);
}

.cta-subtitle {
  font-size: 1.25rem;
  color: var(--muted);
  margin-bottom: 40px;
  line-height: 1.6;
}

.cta-btn {
  background: var(--brand-yellow);
  color: var(--ink);
  border: none;
  padding: 18px 40px;
  border-radius: var(--r);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.cta-btn:hover {
  background: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(247, 189, 18, 0.3);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .about-hero {
    min-height: 70vh;
    padding: 100px 0 80px;
  }
  
  .about-hero-content {
    padding: 20px 15px;
  }
  
  .about-hero .google-reviews {
    font-size: 12px;
    padding: 6px 16px;
  }
  
  .hero-number .number {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }
  
  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .agency-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .agency-description {
    padding: 60px 0;
  }
  
  .about-services {
    padding: 60px 0;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .care-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .care-section {
    padding: 60px 0;
  }
  
  .team-section {
    padding: 60px 0;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .about-cta {
    padding: 60px 0;
  }
  
  .cta-avatars {
    gap: 10px;
  }
  
  .avatar {
    width: 50px;
    height: 50px;
    font-size: 20px;
    margin: 0;
  }
  
  .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
