/* About Page Design System */
:root {
  --primary: #0A1128;
  --gold: #D4AF37;
  --gold-hover: #B5952F;
  --text-light: #F8F9FA;
  --transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

.highlight-gold { color: var(--gold); font-style: italic; }

/* About Hero - EXACT REPLICA OF CONTACT DESIGN */
.about-hero {
    position: relative;
    height: 55vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    background: url('../image/about_hero.png') center/cover no-repeat;
    z-index: 1;
    transform: scale(1.05);
    animation: panHero 20s linear infinite alternate;
}

@keyframes panHero {
    0% { transform: scale(1.05) translate(0, 0); }
    100% { transform: scale(1.1) translate(-2%, -2%); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10, 17, 40, 0.7), rgba(10, 17, 40, 0.95));
    z-index: 2;
}

.hero-content-inner {
    position: relative;
    z-index: 3;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.gold-tag {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 15px;
    display: block;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* Our Legacy Section */
.legacy-section {
    padding: 120px 0;
    background: #fff;
}

.legacy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.legacy-image-box {
    position: relative;
}

.main-legacy-img {
    width: 100%;
    border-radius: 40px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.15);
}

.experience-float {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--primary);
    padding: 40px;
    border-radius: 30px;
    color: #fff;
    border: 1px solid var(--gold);
}

.experience-float h2 { font-size: 48px; color: var(--gold); font-family: 'Playfair Display', serif; }
.experience-float p { font-size: 14px; text-transform: uppercase; letter-spacing: 2px; }

.legacy-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 30px;
    line-height: 1.2;
}

.legacy-text p {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* Values Grid */
.values-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: var(--primary);
}

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

.value-card {
    background: #fff;
    padding: 50px 40px;
    border-radius: 35px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid #eee;
}

.value-card i {
    font-size: 42px;
    color: var(--gold);
    margin-bottom: 30px;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--primary);
    font-family: 'Playfair Display', serif;
}

.value-card p {
    font-size: 15px;
    color: #777;
    line-height: 1.6;
}

.value-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
    border-color: var(--gold);
}

/* Stats Section */
.about-stats {
    padding: 120px 0;
    background: linear-gradient(to right, var(--primary), #16224d);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-stats::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    animation: rotateGradient 20s linear infinite;
}

@keyframes rotateGradient {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 2;
}

.stat-item h3 {
    font-size: 72px;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
    text-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

/* Founder's Corner */
.founder-section {
    padding: 150px 0;
    background: #fff;
}

.founder-card {
    display: flex;
    background: var(--primary);
    border-radius: 50px;
    overflow: hidden;
    color: #fff;
    box-shadow: 0 50px 100px rgba(10, 17, 40, 0.2);
}

.founder-img-box {
    flex: 1;
    min-height: 500px;
    background: url('../image/about_story.png') center/cover no-repeat;
}

.founder-info {
    flex: 1.2;
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.founder-info blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    line-height: 1.4;
    font-style: italic;
    margin-bottom: 40px;
    position: relative;
}

.founder-info blockquote::before {
    content: '"';
    position: absolute;
    top: -40px;
    left: -20px;
    font-size: 120px;
    color: var(--gold);
    opacity: 0.2;
}

/* Luxury Fleet Gallery */
.fleet-preview {
    padding: 120px 0;
    background: #fdfdfd;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.fleet-card {
    position: relative;
    height: 400px;
    border-radius: 35px;
    overflow: hidden;
    cursor: pointer;
}

.fleet-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.fleet-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 17, 40, 0.9), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.fleet-card:hover img { transform: scale(1.1); }
.fleet-card:hover .fleet-overlay { opacity: 1; }

.fleet-overlay h3 { font-family: 'Playfair Display', serif; font-size: 28px; color: var(--gold); }
.fleet-overlay p { font-size: 14px; color: rgba(255,255,255,0.7); margin-top: 10px; }

/* Responsive Refinements */
@media (max-width: 1024px) {
    .legacy-section, .founder-section, .fleet-preview { padding: 80px 0; }
    .hero-title { font-size: 52px; }
    .legacy-grid { gap: 40px; }
    .founder-card { flex-direction: column; }
    .founder-info { padding: 40px; }
}

@media (max-width: 768px) {
    .container { padding: 0 10px; width: 100%; box-sizing: border-box; }
    .about-hero { height: auto; min-height: 300px; padding: 60px 0 40px; }
    .hero-content-inner { padding: 0 10px; width: 100%; box-sizing: border-box; }
    .gold-tag { margin-bottom: 8px; }
    .hero-title { font-size: 24px; margin-bottom: 8px; }
    .hero-subtitle { font-size: 13px; padding: 0; max-width: 100%; opacity: 0.9; }
    
    .legacy-section { padding: 60px 0; }
    .legacy-grid { grid-template-columns: 1fr; gap: 40px; text-align: left; }
    .legacy-text h2 { font-size: 28px; margin-bottom: 20px; line-height: 1.3; text-align: left; }
    .legacy-text p { font-size: 15px; margin-bottom: 20px; text-align: left; }
    .legacy-text .gold-tag { margin: 0 0 15px 0; }

    .experience-float { 
        position: relative; 
        margin: -30px auto 30px;
        bottom: 0; 
        right: 0; 
        padding: 20px 30px; 
        text-align: center;
        max-width: 200px;
        z-index: 5;
    }
    .experience-float h2 { font-size: 32px; }
    .experience-float p { font-size: 11px; }

    .milestones-box { grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 25px; }
    .milestone-mini { padding: 15px 12px; border-radius: 15px; }
    .milestone-mini i { margin-bottom: 5px; font-size: 16px; }
    .milestone-mini h4 { font-size: 14px; margin-bottom: 2px; }
    .section-header { text-align: left; margin-bottom: 30px; }
    .section-header h2 { font-size: 32px; text-align: left; }
    .values-grid { grid-template-columns: 1fr; gap: 20px; }
    .value-card { padding: 30px 20px; text-align: left; }
    .value-card i { font-size: 40px; margin-bottom: 15px; }
    .value-card h3 { font-size: 24px; margin-bottom: 10px; }
    .value-card p { font-size: 14px; }

    .about-stats { padding: 50px 0; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .stat-item { 
        background: rgba(255, 255, 255, 0.03); 
        padding: 20px 10px; 
        border-radius: 20px; 
        border: 1px solid rgba(255, 255, 255, 0.05);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .stat-item h3 { font-size: 28px; margin-bottom: 5px; }
    .stat-item p { font-size: 10px; letter-spacing: 1px; }
}