/* =====================
   ABOUT PAGE STYLES
   Colors: Blue (#1a365d), Green (#48bb78), White
===================== */

/* HERO SECTION */
.about-hero {
  position: relative;
  min-height: 450px;
  background: linear-gradient(135deg, #1a365d 0%, #2d4a7c 50%, #1a365d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/images/about-hero-bg.jpg') center/cover no-repeat;
  opacity: 0.1;
}


.about-hero .hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 60px 20px;
  max-width: 900px;
}

.about-hero h1 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.about-hero .hero-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #48bb78, #68d391);
  margin: 0 auto 20px;
  border-radius: 2px;
}

.about-hero p {
  font-size: 20px;
  opacity: 0.9;
  font-weight: 300;
  color: #fff;
}

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

/* SECTION BADGE */
.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, #48bb78, #38a169);
  color: #fff;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

/* SECTION STYLES */
.about-section {
  padding: 80px 20px;
}

.about-section h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1a365d;
  margin-bottom: 15px;
  line-height: 1.3;
}

.about-section h3 {
  font-size: 22px;
  font-weight: 600;
  color: #48bb78;
  margin-bottom: 25px;
}

.about-section p {
  font-size: 17px;
  line-height: 1.8;
  color: #4a5568;
}

.section-intro {
  max-width: 800px;
  margin: 0 auto 50px;
  text-align: center;
}

/* WHO WE ARE */
.who-we-are {
  background: #f8f9fa;
  text-align: center;
}

.who-we-are .content-wrapper {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  margin-top: 40px;
  text-align: left;
  align-items: center;
}

.who-we-are .content-text p {
  margin-bottom: 20px;
}

.who-we-are .content-stats {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.stat-item {
  background: #fff;
  padding: 25px 30px;
  border-radius: 16px;
  box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #48bb78;
  display: flex;
  align-items: center;
  gap: 20px;
}

.stat-number {
  font-size: 42px;
  font-weight: 700;
  color: #1a365d;
  line-height: 1;
}

.stat-label {
  font-size: 15px;
  color: #666;
  font-weight: 500;
}

/* OUR JOURNEY */
.our-journey {
  background: #fff;
  text-align: center;
}

.journey-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.timeline-item {
  position: relative;
  text-align: center;
}

.timeline-item::after {
  content: '';
  position: absolute;
  top: 30px;
  right: -15px;
  width: 30px;
  height: 3px;
  background: linear-gradient(90deg, #48bb78, #1a365d);
}

.timeline-item:last-child::after {
  display: none;
}

.timeline-year {
  display: inline-block;
  background: linear-gradient(135deg, #1a365d, #2d4a7c);
  color: #fff;
  width: 70px;
  height: 70px;
  line-height: 70px;
  border-radius: 50%;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.08);
}

.timeline-content h4 {
  font-size: 18px;
  font-weight: 600;
  color: #1a365d;
  margin-bottom: 10px;
}

.timeline-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* LEGAL NOTICE */
.legal-notice {
  margin-top: 50px;
  padding: 25px 35px;
  background: linear-gradient(135deg, #f0fff4, #e6fffa);
  border-left: 4px solid #48bb78;
  border-radius: 8px;
  text-align: left;
}

.legal-notice p {
  font-size: 15px;
  color: #2d3748;
  margin: 0;
}

/* SAFETY NOTE */
.safety-note {
  max-width: 800px;
  margin: 15px auto 40px;
  padding: 20px 30px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 15px;
  color: #4a5568;
  text-align: center;
  box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.08);
}

/* SPECIALIZATION */
.specialization {
  background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
  text-align: center;
}

.tour-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 20px;
}

.tour-box {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.tour-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.tour-box-image {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
}

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

.tour-box:hover .tour-box-image img {
  transform: scale(1.08);
}

.tour-box.featured .tour-box-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 54, 93, 0.3), rgba(45, 74, 124, 0.3));
}

.tour-box-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.tour-box.featured .tour-box-content {
  background: linear-gradient(135deg, #1a365d, #2d4a7c);
}

.tour-box h4 {
  font-size: 20px;
  font-weight: 700;
  color: #1a365d;
  margin-bottom: 10px;
}

.tour-box.featured h4 {
  color: #fff;
}

.tour-box p {
  font-size: 14px;
  color: #666;
  margin-bottom: 16px;
  line-height: 1.6;
  flex: 1;
}

.tour-box.featured p {
  color: rgba(255, 255, 255, 0.85);
}

.tour-box-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #48bb78;
  font-weight: 600;
  font-size: 14px;
  margin-top: auto;
}

.tour-box.featured .tour-box-link {
  color: #68d391;
}

/* TRUST SECTION */
.trust-section {
  background: #fff;
  text-align: center;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 50px;
}

.trust-card {
  background: linear-gradient(135deg, #f8f9fa, #fff);
  padding: 45px 40px;
  border-radius: 20px;
  text-align: left;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.trust-card:hover {
  box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.08);
  border-color: #48bb78;
}

.trust-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #48bb78, #38a169);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.trust-icon svg {
  stroke: #fff;
}

.trust-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: #1a365d;
  margin-bottom: 15px;
}

.trust-card p {
  margin-bottom: 25px;
}

.trust-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.trust-features li {
  font-size: 14px;
  color: #4a5568;
  padding-left: 24px;
  position: relative;
}

.trust-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 14px;
  height: 14px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2348bb78' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* TEAM SECTION */
.team-section {
  background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
  text-align: center;
}

.presence-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 50px;
}

.presence-card {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  text-align: left;
  box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.08);
  border-top: 4px solid #48bb78;
}

.presence-icon {
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, #1a365d, #2d4a7c);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.presence-icon svg {
  stroke: #fff;
}

.presence-card h3 {
  font-size: 22px;
  color: #1a365d;
  margin-bottom: 15px;
}

.office-locations {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 25px;
}

.office-locations span {
  background: #f0fff4;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 14px;
  color: #276749;
  border: 1px solid #c6f6d5;
}

.team-stats {
  display: flex;
  gap: 25px;
  margin-top: 25px;
}

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

.team-stat-number {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: #48bb78;
}

.team-stat-label {
  font-size: 13px;
  color: #666;
}

/* TEAM MEMBERS */
.team-members {
  margin-top: 60px;
  padding-top: 60px;
  border-top: 1px solid #e2e8f0;
}

.team-title {
  font-size: 28px;
  color: #1a365d;
  margin-bottom: 40px;
}

.members-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.member-card {
  background: #fff;
  padding: 35px 25px;
  border-radius: 20px;
  box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.member-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.08);
}

.member-photo {
  width: 140px;
  height: 140px;
  margin: 0 auto 25px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #48bb78;
  box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.08);
}

.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: #1a365d;
  margin-bottom: 5px;
}

.member-role {
  color: #48bb78;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 10px;
}

.member-desc {
  font-size: 14px;
  color: #666;
}

/* CTA SECTION */
.about-cta {
  background: linear-gradient(135deg, #1a365d 0%, #2d4a7c 100%);
  padding: 80px 20px;
  text-align: center;
  color: #fff;
}

.brand-statement {
  font-size: 18px;
  font-style: italic;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto 30px;
  line-height: 1.7;
  color: #fff;
}

.about-cta h2 {
  font-size: 36px;
  color: #fff;
  margin-bottom: 15px;
}

.about-cta p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 35px;
  color: #fff;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #48bb78, #38a169);
  color: #fff;
  padding: 16px 40px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.08);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: #fff;
  padding: 16px 40px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid #fff;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: #fff;
  color: #1a365d;
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 992px) {
  .about-hero h1 {
    font-size: 32px;
  }
  
  .about-section h2 {
    font-size: 28px;
  }
  
  .who-we-are .content-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .who-we-are .content-stats {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .journey-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  
  .timeline-item::after {
    display: none;
  }
  
  .tour-boxes {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .trust-grid,
  .presence-grid {
    grid-template-columns: 1fr;
  }
  
  .members-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* RESPONSIVE - TABLET */
@media (max-width: 768px) {
  .about-hero {
    min-height: 280px;
  }
  
  .about-hero .hero-content {
    padding: 45px 16px;
  }
  
  .about-hero h1 {
    font-size: 24px;
    margin-bottom: 14px;
  }
  
  .about-hero .hero-divider {
    width: 60px;
    height: 3px;
    margin-bottom: 14px;
  }
  
  .about-hero p {
    font-size: 14px;
  }
  
  .about-section {
    padding: 40px 16px;
  }
  
  .about-section h2 {
    font-size: 22px;
    margin-bottom: 12px;
  }
  
  .about-section h3 {
    font-size: 17px;
    margin-bottom: 18px;
  }
  
  .about-section p {
    font-size: 14px;
    line-height: 1.7;
  }
  
  .section-intro {
    margin-bottom: 35px;
  }
  
  .section-badge {
    font-size: 11px;
    padding: 6px 14px;
    margin-bottom: 14px;
  }
  
  .stat-item {
    padding: 18px 22px;
    gap: 14px;
  }
  
  .stat-number {
    font-size: 32px;
  }
  
  .stat-label {
    font-size: 13px;
  }
  
  .journey-timeline {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 35px;
  }
  
  .timeline-year {
    width: 55px;
    height: 55px;
    line-height: 55px;
    font-size: 15px;
    margin-bottom: 14px;
  }
  
  .timeline-content h4 {
    font-size: 16px;
    margin-bottom: 6px;
  }
  
  .timeline-content p {
    font-size: 13px;
  }
  
  .legal-notice {
    padding: 18px 22px;
    margin-top: 35px;
  }
  
  .legal-notice p {
    font-size: 13px;
  }
  
  .safety-note {
    padding: 14px 18px;
    margin: 12px auto 28px;
    font-size: 13px;
  }
  
  .tour-box-image {
    height: 160px;
  }
  
  .tour-box-content {
    padding: 20px;
  }
  
  .tour-box h4 {
    font-size: 18px;
    margin-bottom: 8px;
  }
  
  .tour-box p {
    font-size: 13px;
    margin-bottom: 12px;
  }
  
  .tour-box-link {
    font-size: 13px;
  }
  
  .trust-card {
    padding: 28px 22px;
  }
  
  .trust-icon {
    width: 55px;
    height: 55px;
    margin-bottom: 18px;
  }
  
  .trust-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
  }
  
  .trust-card p {
    font-size: 14px;
    margin-bottom: 18px;
  }
  
  .trust-features {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  
  .trust-features li {
    font-size: 13px;
  }
  
  .presence-card {
    padding: 28px;
  }
  
  .presence-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 18px;
  }
  
  .presence-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
  }
  
  .presence-card p {
    font-size: 14px;
  }
  
  .office-locations {
    gap: 10px;
    margin-top: 18px;
  }
  
  .office-locations span {
    padding: 8px 14px;
    font-size: 12px;
  }
  
  .team-stats {
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    margin-top: 18px;
  }
  
  .team-stat-number {
    font-size: 26px;
  }
  
  .team-stat-label {
    font-size: 12px;
  }
  
  .team-members {
    margin-top: 40px;
    padding-top: 40px;
  }
  
  .team-title {
    font-size: 22px;
    margin-bottom: 28px;
  }
  
  .members-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .member-card {
    padding: 25px 20px;
  }
  
  .member-photo {
    width: 110px;
    height: 110px;
    margin-bottom: 18px;
    border-width: 3px;
  }
  
  .member-card h4 {
    font-size: 17px;
  }
  
  .member-role {
    font-size: 13px;
    margin-bottom: 8px;
  }
  
  .member-desc {
    font-size: 13px;
  }
  
  .about-cta {
    padding: 50px 16px;
  }
  
  .brand-statement {
    font-size: 15px;
    margin-bottom: 22px;
  }
  
  .about-cta h2 {
    font-size: 22px;
    margin-bottom: 12px;
  }
  
  .about-cta p {
    font-size: 15px;
    margin-bottom: 25px;
  }
  
  .btn-primary,
  .btn-secondary {
    padding: 14px 32px;
    font-size: 14px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}

/* RESPONSIVE - MOBILE */
@media (max-width: 480px) {
  .about-hero {
    min-height: 220px;
  }
  
  .about-hero .hero-content {
    padding: 35px 14px;
  }
  
  .about-hero h1 {
    font-size: 20px;
    margin-bottom: 12px;
  }
  
  .about-hero .hero-divider {
    width: 50px;
    margin-bottom: 12px;
  }
  
  .about-hero p {
    font-size: 13px;
  }
  
  .about-section {
    padding: 32px 14px;
  }
  
  .about-section h2 {
    font-size: 19px;
    margin-bottom: 10px;
  }
  
  .about-section h3 {
    font-size: 15px;
    margin-bottom: 14px;
  }
  
  .about-section p {
    font-size: 13px;
    line-height: 1.65;
  }
  
  .section-intro {
    margin-bottom: 28px;
  }
  
  .section-badge {
    font-size: 10px;
    padding: 5px 12px;
    margin-bottom: 12px;
  }
  
  .content-stats {
    gap: 12px;
  }
  
  .stat-item {
    flex-direction: column;
    text-align: center;
    gap: 8px;
    padding: 16px 18px;
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
  }
  
  .stat-number {
    font-size: 28px;
  }
  
  .stat-label {
    font-size: 12px;
  }
  
  .journey-timeline {
    gap: 18px;
    margin-top: 28px;
  }
  
  .timeline-year {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 14px;
    margin-bottom: 12px;
  }
  
  .timeline-content h4 {
    font-size: 15px;
  }
  
  .timeline-content p {
    font-size: 12px;
  }
  
  .legal-notice {
    padding: 14px 16px;
    margin-top: 28px;
  }
  
  .legal-notice p {
    font-size: 12px;
  }
  
  .safety-note {
    padding: 12px 14px;
    font-size: 12px;
  }
  
  .tour-box-image {
    height: 140px;
  }
  
  .tour-box-content {
    padding: 16px;
  }
  
  .tour-box h4 {
    font-size: 16px;
  }
  
  .tour-box p {
    font-size: 12px;
    margin-bottom: 10px;
  }
  
  .tour-box-link {
    font-size: 12px;
  }
  
  .trust-card {
    padding: 22px 18px;
  }
  
  .trust-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 14px;
  }
  
  .trust-card h3 {
    font-size: 17px;
    margin-bottom: 10px;
  }
  
  .trust-card p {
    font-size: 13px;
    margin-bottom: 14px;
  }
  
  .trust-features li {
    font-size: 12px;
    padding-left: 20px;
  }
  
  .trust-features li::before {
    width: 12px;
    height: 12px;
    top: 4px;
  }
  
  .presence-card {
    padding: 22px 18px;
  }
  
  .presence-icon {
    width: 45px;
    height: 45px;
    margin-bottom: 14px;
  }
  
  .presence-card h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }
  
  .presence-card p {
    font-size: 13px;
  }
  
  .office-locations {
    flex-direction: column;
    gap: 8px;
  }
  
  .office-locations span {
    padding: 7px 12px;
    font-size: 11px;
  }
  
  .team-stats {
    gap: 14px;
  }
  
  .team-stat-number {
    font-size: 22px;
  }
  
  .team-stat-label {
    font-size: 11px;
  }
  
  .team-members {
    margin-top: 32px;
    padding-top: 32px;
  }
  
  .team-title {
    font-size: 18px;
    margin-bottom: 22px;
  }
  
  .members-grid {
    gap: 18px;
    max-width: 280px;
  }
  
  .member-card {
    padding: 20px 16px;
  }
  
  .member-photo {
    width: 90px;
    height: 90px;
    margin-bottom: 14px;
  }
  
  .member-card h4 {
    font-size: 15px;
  }
  
  .member-role {
    font-size: 12px;
  }
  
  .member-desc {
    font-size: 12px;
  }
  
  .about-cta {
    padding: 40px 14px;
  }
  
  .brand-statement {
    font-size: 14px;
    margin-bottom: 18px;
  }
  
  .about-cta h2 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  .about-cta p {
    font-size: 13px;
    margin-bottom: 20px;
  }
  
  .btn-primary,
  .btn-secondary {
    padding: 12px 28px;
    font-size: 13px;
    width: 100%;
    max-width: 240px;
    text-align: center;
  }
}
