/* About Page Specific Styles */

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* About Hero Section */
.about-hero {
  position: relative;
  min-height: 60vh;
  background: linear-gradient(135deg, #372406, #473606);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-top: 80px;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('assets/service2.jpg') no-repeat center center/cover;
  opacity: 0.3;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(0,0,0,0.1), rgba(211, 84, 0, 0.1));
}

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

.breadcrumb {
  font-size: 14px;
  margin-bottom: 20px;
  opacity: 0.8;
}

.breadcrumb a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: var(--accent);
}

.breadcrumb span {
  margin: 0 8px;
}

.page-title {
  font-size: 3.5rem;
  font-weight: 900;
  margin: 0 0 20px;
  line-height: 1.2;
  animation: slideUpFade 1s ease-out;
}

.hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  margin: 0;
  animation: slideUpFade 1s ease-out 0.3s both;
}

/* Active nav link */
.nav a.active {
  color: var(--accent);
}

.nav a.active::after {
  width: 100%;
}

/* Section Badge */
.section-badge {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

/* Our Story Section */
.our-story {
  background: var(--light-bg);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: center;
}

.story-content h2 {
  font-size: 2.5rem;
  color: var(--primary-dark);
  margin: 0 0 20px;
  line-height: 1.3;
}

.lead {
  font-size: 1.25rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 30px;
}

.story-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.detail-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.detail-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  flex-shrink: 0;
}

.detail-content h4 {
  margin: 0 0 6px;
  color: var(--primary-dark);
  font-size: 16px;
  font-weight: 600;
}

.detail-content p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.story-image {
  position: relative;
}

.founder-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.image-caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  padding: 16px;
  border-radius: 12px;
  text-align: center;
}

.image-caption h5 {
  margin: 0 0 4px;
  color: var(--primary-dark);
  font-size: 16px;
  font-weight: 600;
}

.image-caption p {
  margin: 0;
  color: var(--accent);
  font-size: 14px;
  font-weight: 500;
}

/* Vision, Mission, Values Section */
.vmv-section {
  background: white;
}

.vmv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.vmv-card {
  background: white;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  text-align: center;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}

.vmv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.vmv-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: white;
}

.vision-card .vmv-icon {
  background: linear-gradient(135deg, #667eea, #764ba2);
}

.mission-card .vmv-icon {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
}

.values-card .vmv-icon {
  background: linear-gradient(135deg, #f093fb, #f5576c);
}

.vmv-card h3 {
  font-size: 1.5rem;
  color: var(--primary-dark);
  margin: 0 0 16px;
  font-weight: 700;
}

.vmv-card p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.values-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
}

.value-item i {
  color: var(--accent);
  font-size: 14px;
}

.card-decoration {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
}

/* Why Choose Us Section */
.why-choose {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 80px 20px;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.Why-Picture {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  transform: perspective(1000px) rotateY(-5deg);
  transition: all 0.3s ease;
}

.Why-Picture:hover {
  transform: perspective(1000px) rotateY(0deg) translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.why-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.Why-Picture:hover .why-image {
  transform: scale(1.05);
}

.Why-Picture::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.1) 0%, rgba(212, 165, 116, 0.05) 100%);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.Why-Picture:hover::before {
  opacity: 1;
}

.Why-Picture::after {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  border: 2px solid #d4a574;
  border-radius: 20px;
  z-index: -1;
  opacity: 0.3;
}

/* Features List Styles */
.features-list {
  margin-top: 40px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
  padding: 20px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

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

.feature-number {
  background: linear-gradient(135deg, #d4a574, #b8935f);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(212, 165, 116, 0.3);
}

.feature-content h4 {
  margin: 0 0 8px 0;
  color: #2c3e50;
  font-size: 18px;
  font-weight: 600;
}

.feature-content p {
  margin: 0;
  color: #6c757d;
  line-height: 1.6;
}

/* Mobile Responsive Design */
@media (max-width: 1200px) {
  .story-grid,
  .why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .story-image {
    order: -1;
  }
  
  .founder-image {
    height: 400px;
  }
  
  .vmv-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}

@media (max-width: 992px) {
  .container {
    padding: 0 15px;
  }
  
  .about-hero {
    min-height: 50vh;
    margin-top: 70px;
  }
  
  .page-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.125rem;
  }
  
  .story-content h2,
  .cta-content h2 {
    font-size: 2rem;
  }
  
  .lead {
    font-size: 1.125rem;
  }
  
  .features-list {
    gap: 20px;
  }
  
  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
  }
  
  .member-image img {
    height: 250px;
  }
  
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .about-hero {
    margin-top: 60px;
    min-height: 40vh;
    padding: 20px 0;
  }
  
  .about-hero .hero-content {
    padding: 20px 15px;
  }
  
  .page-title {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .section {
    padding: 60px 15px;
  }
  
  .story-content h2 {
    font-size: 1.75rem;
    margin-bottom: 15px;
  }
  
  .lead {
    font-size: 1rem;
    margin-bottom: 25px;
  }
  
  .detail-item {
    gap: 12px;
  }
  
  .detail-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  
  .detail-content h4 {
    font-size: 14px;
  }
  
  .detail-content p {
    font-size: 13px;
  }
  
  .founder-image {
    height: 300px;
  }
  
  .image-caption {
    bottom: 15px;
    left: 15px;
    right: 15px;
    padding: 12px;
  }
  
  .vmv-card {
    padding: 30px 20px;
  }
  
  .vmv-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
  
  .vmv-card h3 {
    font-size: 1.25rem;
  }
  
  .feature-item {
    gap: 15px;
  }
  
  .feature-number {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
  
  .feature-content h4 {
    font-size: 16px;
  }
  
  .why-stats {
    padding: 30px 20px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .member-image img {
    height: 280px;
  }
  
  .member-info {
    padding: 20px;
  }
  
  .cta-content h2 {
    font-size: 1.75rem;
    margin-bottom: 15px;
  }
  
  .cta-content p {
    font-size: 1rem;
    margin-bottom: 25px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  
  .cta-buttons .btn {
    width: 200px;
    text-align: center;
    padding: 10px 20px;
  }
  
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .about-hero {
    margin-top: 60px;
    min-height: 35vh;
  }
  
  .page-title {
    font-size: 1.5rem;
    margin-bottom: 12px;
  }
  
  .hero-subtitle {
    font-size: 0.9rem;
  }
  
  .section {
    padding: 40px 10px;
  }
  
  .section-title h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  
  .section-title p {
    font-size: 13px;
    padding: 0 5px;
  }
  
  .story-content h2 {
    font-size: 1.5rem;
  }
  
  .lead {
    font-size: 0.9rem;
  }
  
  .story-details {
    gap: 15px;
  }
  
  .detail-icon {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
  
  .detail-content h4 {
    font-size: 13px;
  }
  
  .detail-content p {
    font-size: 12px;
  }
  
  .founder-image {
    height: 250px;
  }
  
  .image-caption {
    padding: 10px;
  }
  
  .image-caption h5 {
    font-size: 14px;
  }
  
  .image-caption p {
    font-size: 12px;
  }
  
  .vmv-card {
    padding: 25px 15px;
  }
  
  .vmv-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  
  .vmv-card h3 {
    font-size: 1.125rem;
  }
  
  .vmv-card p {
    font-size: 14px;
  }
  
  .feature-number {
    width: 35px;
    height: 35px;
    font-size: 12px;
  }
  
  .feature-content h4 {
    font-size: 14px;
  }
  
  .feature-content p {
    font-size: 13px;
  }
  
  .why-stats {
    padding: 20px 15px;
  }
  
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
  
  .stat-number {
    font-size: 1.75rem;
  }
  
  .stat-label {
    font-size: 12px;
  }
  
  .member-image img {
    height: 200px;
  }
  
  .member-info {
    padding: 15px;
  }
  
  .member-info h4 {
    font-size: 16px;
  }
  
  .member-role {
    font-size: 12px;
  }
  
  .member-bio {
    font-size: 13px;
  }
  
  .cta-content h2 {
    font-size: 1.5rem;
  }
  
  .cta-content p {
    font-size: 0.9rem;
  }
  
  .cta-buttons .btn {
    width: 180px;
    font-size: 13px;
    padding: 8px 16px;
  }
  
  .breadcrumb {
    font-size: 12px;
    margin-bottom: 15px;
  }
}

/* Animation enhancements */
.section {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.section.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Ensure no overlapping with mobile navigation */
@media (max-width: 768px) {
  body {
    padding-top: 0;
  }
  
  .about-hero {
    margin-top: 60px;
  }
  
  /* Ensure mobile menu doesn't overlap content */
  .mobile-menu.active {
    z-index: 1000;
  }
  
  .nav {
    z-index: 999;
  }
}
