/* FILE: assets/css/about.css */
/* About Us Page Specific Styles - International Legal Theme */
:root {
  --primary-navy: #0a2342;
  --primary-gold: #9e7e4b;
  --accent-gold-light: #b89b6e;
  --light-bg: #f5f3f0;
  --medium-gray: #e0e0e0;
  --dark-text: #1e2b37;
  --medium-text: #4a5568;
}

/* Hero Section */
.about-hero {
  background: linear-gradient(rgba(10, 35, 66, 0.92), rgba(10, 35, 66, 0.97)), 
              url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 180px 0 120px;
  color: white;
  position: relative;
  margin-top: 80px;
}

.about-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--primary-gold);
}

.about-hero .lead {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  opacity: 0.95;
  line-height: 1.7;
}

.hero-divider {
  width: 100px;
  height: 4px;
  background: var(--primary-gold);
  margin: 2rem auto;
}

/* Section Spacing */
.section {
  padding: 80px 0;
}

.section-title {
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--primary-navy);
  position: relative;
  display: inline-block;
}

.section-title.text-start h2::after {
  left: 0;
  transform: none;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--primary-gold);
}

.section-title p {
  color: var(--medium-text);
  max-width: 700px;
  margin: 2rem auto 0;
  font-size: 1.1rem;
}

/* Overview Section */
.overview-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.overview-image img {
  width: 100%;
  height: auto;
  transition: transform 0.6s ease;
}

.overview-image:hover img {
  transform: scale(1.02);
}

.experience-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: var(--primary-gold);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

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

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

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-gold);
  line-height: 1.2;
}

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

/* Value Cards */
.value-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  text-align: center;
  height: 100%;
  transition: all 0.4s ease;
  border: 1px solid #f0f0f0;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(10, 35, 66, 0.15);
  border-color: var(--primary-gold);
}

.card-icon {
  width: 80px;
  height: 80px;
  background: var(--light-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--primary-gold);
  font-size: 2rem;
  transition: all 0.4s ease;
}

.value-card:hover .card-icon {
  background: var(--primary-gold);
  color: white;
}

.value-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--primary-navy);
}

.value-card p {
  color: var(--medium-text);
  line-height: 1.7;
  margin-bottom: 0;
}

/* Custom List */
.custom-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.custom-list li {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.custom-list i {
  color: var(--primary-gold);
  font-size: 1.3rem;
}

/* Content Block */
.content-block {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: all 0.4s ease;
}

.content-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(10, 35, 66, 0.1);
}

.content-block h3 {
  color: var(--primary-navy);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.content-block h3 i {
  color: var(--primary-gold);
}

.content-block p {
  color: var(--medium-text);
  line-height: 1.8;
  margin-bottom: 0;
}

/* Responsibility Cards */
.responsibility-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  height: 100%;
  transition: all 0.4s ease;
}

.responsibility-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(10, 35, 66, 0.15);
}

.responsibility-card i {
  font-size: 3rem;
  color: var(--primary-gold);
  margin-bottom: 1.5rem;
}

.responsibility-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--primary-navy);
}

.responsibility-card p {
  color: var(--medium-text);
  line-height: 1.7;
  margin-bottom: 0;
}

/* Strategy Cards */
.strategy-card {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: all 0.4s ease;
  border: 1px solid #f0f0f0;
}

.strategy-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(10, 35, 66, 0.15);
  border-color: var(--primary-gold);
}

.strategy-card .number {
  font-size: 4rem;
  font-weight: 700;
  color: rgba(158, 126, 75, 0.1);
  position: absolute;
  top: 10px;
  right: 20px;
  line-height: 1;
}

.strategy-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: var(--primary-navy);
  position: relative;
  z-index: 1;
}

.strategy-card p {
  color: var(--medium-text);
  line-height: 1.7;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

/* Timeline */
.story-timeline {
  position: relative;
  padding-left: 30px;
}

.story-timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--primary-gold);
  border-radius: 4px;
}

.timeline-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 2.5rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary-gold);
  border: 4px solid white;
  box-shadow: 0 0 0 2px var(--primary-gold);
}

.timeline-item .year {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 0.5rem;
}

.timeline-item .desc {
  color: var(--medium-text);
  font-size: 1.1rem;
}

/* Diversity Section */
.diversity-section {
  background: var(--light-bg);
}

.diversity-stats {
  margin-top: 2rem;
}

.diversity-stats .stat-number {
  font-size: 2.5rem;
}

.diversity-stats .stat-label {
  display: block;
  margin-top: 0.5rem;
}

/* Background Utilities */
.bg-light {
  background: var(--light-bg);
}

/* Responsive */
@media (max-width: 992px) {
  .section {
    padding: 60px 0;
  }
  
  .about-hero {
    padding: 150px 0 80px;
  }
  
  .experience-badge {
    bottom: 20px;
    right: 20px;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .strategy-card .number {
    font-size: 3rem;
  }
  
  .timeline-item .year {
    font-size: 1.3rem;
  }
}

@media (max-width: 576px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .experience-badge {
    position: relative;
    bottom: 0;
    right: 0;
    margin-top: 1rem;
    display: inline-block;
  }
  
  .value-card,
  .responsibility-card,
  .strategy-card {
    padding: 2rem 1.5rem;
  }
}