/* css/about.css */

/* Hero */
#abt-hero {
  position: relative;
  padding: 120px 0 220px;
  background: var(--navy);
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.abt-hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(rgba(14, 24, 42, 0.85), rgba(14, 24, 42, 0.95)), url('../assets/img/about-us-hero.png');
  background-size: cover;
  background-position: bottom center;
  pointer-events: none;
}
.abt-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}
.abt-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.1;
}
.abt-hero-title span { color: var(--gold); }
.abt-hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}
.abt-hero-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}
.abt-hero-btns .btn {
  padding: 10px 24px;
  font-size: 0.95rem;
  gap: 8px;
}
.hero-scroll-indicator {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  animation: bounce 2s infinite;
  z-index: 10;
  transition: color 0.3s ease;
  text-decoration: none;
}
.hero-scroll-indicator span {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
}
.hero-scroll-indicator i {
  font-size: 1.1rem;
}
.hero-scroll-indicator:hover {
  color: var(--gold);
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translate(-50%, 0); }
  40% { transform: translate(-50%, -15px); }
  60% { transform: translate(-50%, -7px); }
}

/* HOMEPAGE ABOUT (Copied from index.css) */
#about{padding:88px 0;background:var(--gray-50)}
.about-grid{display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:center}
.about-img-wrap{position:relative}
.about-img-main{border-radius:20px;overflow:hidden;box-shadow:0 20px 60px rgba(0,0,0,.18)}
.about-img-main img{width:100%;height:440px;object-fit:cover;transition:transform .6s ease}
.about-img-main:hover img{transform:scale(1.04)}
.about-badge{position:absolute;bottom:-24px;right:-24px;background:#fff;border-radius:14px;padding:18px 22px;box-shadow:0 8px 30px rgba(0,0,0,.12);display:flex;align-items:center;gap:13px;border-left:4px solid var(--gold)}
.about-badge .bi{width:46px;height:46px;background:linear-gradient(135deg,var(--gold),var(--gold-dark));border-radius:9px;display:flex;align-items:center;justify-content:center;color:#fff;font-size:1.25rem;flex-shrink:0}
.about-badge .bn{font-size:1.5rem;font-weight:800;color:var(--navy);line-height:1}
.about-badge .bt{font-size:.75rem;color:var(--muted);margin-top:2px}
.about-feats{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin:24px 0 32px}
.af-item{display:flex;align-items:center;gap:9px;font-size:.88rem;font-weight:500}
.af-item i{color:var(--gold);font-size:.95rem;width:18px;flex-shrink:0}
@media(max-width: 1024px) {
  .about-grid{grid-template-columns:1fr;gap:40px}
  .about-img-main img{height:350px}
  .about-badge{right:10px;bottom:-15px;padding: 14px 18px;}
}
@media(max-width: 768px) {
  .about-grid { text-align: left; gap: 30px; }
  .about-grid .tag { margin: 0 0 12px 0; }
  #about-heading { font-size: 2rem; text-align: left; }
  .about-img-main img{height:250px}
  .about-badge{right:10px;bottom:-15px;padding: 10px 14px;}
  .about-badge .bn{font-size:1.1rem;}
  .about-badge .bi{width:36px;height:36px;font-size:1rem;}
  .about-feats{grid-template-columns:1fr; justify-items: start;}
}

/* Story */
#abt-story {
  padding: 100px 0;
  background: #fff;
}
.story-wrap {
  display: flex;
  align-items: center;
  gap: 60px;
}
.story-img {
  flex: 1;
  position: relative;
}
.story-img img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.story-img::after {
  content: '';
  position: absolute;
  bottom: -20px; right: -20px;
  width: 150px; height: 150px;
  background: var(--gold);
  border-radius: 50%;
  z-index: -1;
  opacity: 0.2;
}
.story-badge {
  bottom: 24px;
  left: -24px;
  right: auto;
  border-left: none;
  border-right: 4px solid var(--gold);
  z-index: 10;
}
.story-content {
  flex: 1;
}
.story-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--navy);
  margin-bottom: 24px;
  line-height: 1.2;
  font-weight: 800;
}
.story-content p {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}
.story-stats {
  display: flex;
  gap: 30px;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #eee;
}
.stat-item h3 {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 4px;
}
.stat-item p {
  font-size: 0.9rem;
  color: var(--navy);
  font-weight: 600;
  margin: 0;
}

/* Values */
#abt-values {
  padding: 100px 0;
  background: #f9fafb;
}
.val-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}
.val-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  transition: transform 0.3s ease;
  border: 1px solid rgba(0,0,0,0.03);
}
.val-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.06); }
.val-icon {
  width: 70px; height: 70px;
  margin: 0 auto 24px;
  background: rgba(245,166,35,0.1);
  color: var(--gold-dark);
  font-size: 1.8rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 18px;
}
.val-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 12px;
  font-weight: 800;
}
.val-desc { color: var(--muted); line-height: 1.6; }

/* Fleet Showcase */
#abt-fleet {
  padding: 100px 0;
  background: var(--navy);
  color: #fff;
}
.abt-fleet-wrap .sec-title { color: #fff; }
.abt-fleet-wrap .sec-desc { color: rgba(255,255,255,0.8); }
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 50px;
}
.fleet-item {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  overflow: hidden;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}
.fleet-item:hover { 
  transform: translateY(-8px); 
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(245, 166, 35, 0.3);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3); 
}
.fleet-img {
  width: 100%;
  height: 200px; /* Fixed height for uniformity */
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.fleet-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}
.fleet-item:hover .fleet-img img {
  transform: scale(1.08);
}
.fleet-item h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold);
  padding: 20px 15px;
  margin: 0;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Reviews */
#abt-reviews {
  padding: 100px 0;
  background: #fff;
}
.rev-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}
.rev-card {
  background: #f9fafb;
  padding: 40px 32px;
  border-radius: 24px;
  border: 1px solid #eee;
  position: relative;
}
.rev-card::before {
  content: '\201C';
  position: absolute;
  top: 20px; right: 30px;
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: rgba(245,166,35,0.15);
  line-height: 1;
}
.rev-text {
  font-style: italic;
  color: #555;
  line-height: 1.7;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}
.rev-author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.rev-author img {
  width: 50px; height: 50px;
  border-radius: 50%;
  object-fit: cover;
}
.rev-name { font-weight: 700; color: var(--navy); display: block; }
.rev-role { font-size: 0.85rem; color: var(--muted); }

/* CTA */
#abt-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  padding: 80px 0;
  text-align: center;
  color: #fff;
}
#abt-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 16px;
  color: #fff;
  font-weight: 800;
}
#abt-cta p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: rgba(255,255,255,0.9);
}
.abt-cta-btns {
  display: flex; justify-content: center; gap: 16px; flex-wrap: wrap;
}
.btn-white {
  background: #fff;
  color: var(--navy);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.btn-white:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

@media(max-width: 992px) {
  .story-wrap { flex-direction: column; text-align: left; }
  .story-img::after { display: none; }
  .story-stats { justify-content: flex-start; }
}
@media(max-width: 768px) {
  .hero-scroll-indicator { display: none; }
  
  #abt-hero { padding: 100px 0 160px; }
  .abt-hero-title { font-size: 2.2rem; }
  .abt-hero-desc { font-size: 1rem; padding: 0; text-align: center; }
  .abt-hero-btns { flex-direction: column; padding: 0 16px; gap: 12px; }
  .abt-hero-btns .btn { width: 100%; justify-content: center; }
  
  #abt-story, #abt-values, #abt-fleet, #abt-reviews { padding: 60px 0; }
  
  .story-content h2 { font-size: 1.8rem; margin-bottom: 16px; text-align: left; }
  .story-content p { font-size: 0.95rem; text-align: left; }
  
  .story-stats { 
    flex-direction: row; 
    flex-wrap: nowrap;
    background: #f9fafb;
    border-radius: 16px;
    padding: 20px 10px;
    margin-top: 24px;
    justify-content: space-between;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border: 1px solid #eee;
  }
  .stat-item { 
    width: auto;
    flex: 1; 
    text-align: center; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    gap: 6px; 
    padding: 0 5px;
    border-right: 1px solid #ddd;
  }
  .stat-item:last-child { border-right: none; }
  .stat-item h3 { font-size: 1.4rem; flex: none; margin-bottom: 0; text-align: center; }
  .stat-item p { font-size: 0.75rem !important; margin: 0; text-align: center; line-height: 1.2; }
  
  .story-badge { left: 10px; bottom: -15px; padding: 10px 14px; }
  
  .val-card { padding: 30px 20px; }
  .val-icon { width: 60px; height: 60px; font-size: 1.5rem; margin-bottom: 16px; }
  .val-title { font-size: 1.2rem; }
  
  .fleet-item { padding: 20px 15px; }
  
  .rev-card { padding: 30px 20px; }
  .rev-card::before { right: 20px; font-size: 4rem; top: 10px; }
  .rev-text { font-size: 0.95rem; }
  
  #abt-cta { padding: 60px 0; }
  #abt-cta h2 { font-size: 1.8rem; }
  .abt-cta-btns { flex-direction: column; width: 100%; max-width: 300px; margin: 0 auto; gap: 12px; }
  .abt-cta-btns .btn { width: 100%; justify-content: center; }
}
