/* ============================================================
   Pack & Go — about.css  |  Same card style as homepage
   ============================================================ */

/* ===== HERO NEW ===== */
.about-hero-new {
    background: #ffffff;
    padding: 20px 40px 30px;
    position: relative;
    overflow: hidden;
}
.about-hero-new::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 420px; height: 420px;
    background: radial-gradient(circle, #e8f4ff 0%, transparent 70%);
    pointer-events: none;
}
.about-hero-new-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.about-breadcrumb-new {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #888;
    margin-bottom: 28px;
}
.about-breadcrumb-new a { color: #888; transition: color 0.3s; }
.about-breadcrumb-new a:hover { color: #185FA5; }
.about-breadcrumb-new i { font-size: 10px; }
.about-breadcrumb-new span { color: #2D3748; font-weight: 600; }
.about-hero-new-left h1 {
    font-size: 52px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.15;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.about-hero-new-left h1 span { color: #F47B20; }
.about-hero-new-left p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 420px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.about-hero-new-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}
.hero-badge-new {
    background: #f0f7ff;
    color: #185FA5;
    padding: 9px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 7px;
    border: 1px solid #d0e8ff;
}
.hero-badge-new i { color: #F47B20; }
.about-hero-new-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #185FA5;
    color: white;
    padding: 14px 30px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 17px;
    transition: background 0.3s;
}
.about-hero-new-btn:hover { background: #0D47A1; }

/* Right side images */
.about-hero-new-right {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.about-hero-main-img {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0,0,0,0.16);
}
.about-hero-main-img img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}
.about-hero-small-imgs {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-top: 40px;
}
.about-hero-small-img {
    width: 150px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.14);
}
.about-hero-small-img img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}
.about-hero-small-img:hover img { transform: scale(1.05); }

/* Responsive */
@media (max-width: 900px) {
    .about-hero-new-inner { grid-template-columns: 1fr; gap: 40px; }
    .about-hero-new-left h1 { font-size: 36px; }
    .about-hero-main-img img { height: 300px; }
    .about-hero-small-img { width: 120px; }
    .about-hero-small-img img { height: 90px; }
}
@media (max-width: 480px) {
    .about-hero-new { padding: 40px 20px 50px; }
    .about-hero-new-left h1 { font-size: 28px; }
    .about-hero-new-right { flex-direction: column; }
    .about-hero-small-imgs { flex-direction: row; padding-top: 0; }
    .about-hero-small-img { width: 100%; flex: 1; }
}

/* ===== IMAGE MARQUEE BANNER ===== */
.about-marquee-banner {
    background: #ffffff;
    padding: 0;
    margin: 20px 0;
    position: relative;
}
.about-marquee-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    border-radius: 16px;
    padding: 10px 0;
}
.about-marquee-fade-left,
.about-marquee-fade-right {
    position: absolute;
    top: 0;
    width: 180px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.about-marquee-fade-left {
    left: 0;
    background: linear-gradient(to right, #ffffff 0%, transparent 100%);
}
.about-marquee-fade-right {
    right: 0;
    background: linear-gradient(to left, #ffffff 0%, transparent 100%);
}
.about-marquee-track {
    display: flex;
    gap: 16px;
    animation: aboutMarqueeScroll 32s linear infinite;
    width: max-content;
    padding: 0 40px;
}
.about-marquee-track:hover {
    animation-play-state: paused;
}
.about-marquee-item {
    flex-shrink: 0;
    width: 280px;
    height: 180px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0,0,0,0.14);
}
.about-marquee-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.about-marquee-item:hover img {
    transform: scale(1.05);
}
@keyframes aboutMarqueeScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== SECTION COMMON ===== */
.section-eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #185FA5;
    margin-bottom: 10px;
}
.about-section-header { text-align: center; margin-bottom: 44px; }
.about-section-header h2 { font-size: 32px; font-weight: 700; color: #2D3748; margin-bottom: 10px; }
.about-section-header p { font-size: 15px; color: #666; max-width: 460px; margin: 0 auto; }

/* ===== OUR STORY ===== */
.about-story { padding: 80px 40px; background: white; }
.about-story-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}
.story-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2D3748;
    line-height: 1.2;
    margin-bottom: 22px;
}
.story-text p {
    font-size: 15px;
    color: #555;
    line-height: 1.85;
    margin-bottom: 16px;
}
.about-story-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #185FA5;
    color: white;
    padding: 13px 28px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    margin-top: 12px;
    transition: background 0.3s;
}
.about-story-cta:hover { background: #0D47A1; }

/* Story cards — same style as homepage carousel cards */
.story-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.story-stat-card {
    background: white;
    border: 1px solid #EEEEEE;
    border-radius: 16px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.14);
    padding: 24px 20px;
    transition: all 0.3s ease;
    cursor: default;
}
.story-stat-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.18); transform: translateY(-2px); }
.story-stat-card-highlight {
    background: linear-gradient(135deg, #185FA5, #0D47A1);
    border-color: transparent;
}
.story-stat-card-highlight h3,
.story-stat-card-highlight p { color: white !important; }
.story-stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 14px;
}
.story-stat-card h3 {
    font-size: 22px;
    font-weight: 800;
    color: #2D3748;
    margin-bottom: 6px;
}
.story-stat-card p {
    font-size: 12px;
    color: #777;
    line-height: 1.5;
    margin: 0;
}

/* ===== MISSION / VISION / AIM ===== */
.about-mission { padding: 40px 40px; background: #f8faff; }
.about-mission-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
/* Same card style as homepage */
.mission-card {
    background: white;
    border: 1px solid #EEEEEE;
    border-radius: 16px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.14);
    padding: 36px 28px;
    transition: all 0.3s ease;
}
.mission-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.18); transform: translateY(-2px); }
.mission-card-center {
    background: linear-gradient(135deg, #185FA5, #0D47A1);
    border-color: transparent;
}
.mission-card-center h3,
.mission-card-center p,
.mission-card-center p strong { color: white !important; }
.mission-card-center .section-eyebrow { color: #F47B20; }
.mission-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
}
.mission-card h3 { font-size: 19px; font-weight: 700; color: #2D3748; margin-bottom: 12px; }
.mission-card p { font-size: 14px; color: #666; line-height: 1.8; margin: 0; }

/* ===== WHY PACK & GO ===== */
.about-why { padding: 80px 40px; background: white; }
.about-why-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}
.about-why-left h2 { font-size: 34px; font-weight: 700; color: #2D3748; margin-bottom: 14px; line-height: 1.2; }
.about-why-left > p { font-size: 15px; color: #666; line-height: 1.8; margin-bottom: 32px; }
.why-list { display: flex; flex-direction: column; gap: 24px; }
.why-item { display: flex; gap: 16px; align-items: flex-start; }
.why-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: #e8f4ff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #185FA5;
    font-size: 17px;
    transition: all 0.3s;
}
.why-item:hover .why-icon { background: #185FA5; color: white; }
.why-item strong { display: block; font-size: 15px; color: #2D3748; margin-bottom: 3px; font-weight: 700; }
.why-item p { font-size: 13px; color: #777; line-height: 1.6; margin: 0; }

/* Why right — card style same as homepage */
.why-big-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0,0,0,0.14);
    position: relative;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}
.why-big-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.18); transform: translateY(-2px); }
.why-big-card img { width: 100%; height: 280px; object-fit: cover; display: block; }
.why-big-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13,71,161,0.88) 0%, transparent 55%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
}
.why-big-card-text .card-badge {
    position: static;
    display: inline-block;
    margin-bottom: 8px;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(6px);
    color: #333;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}
.why-big-card-text h3 { color: white; font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.why-big-card-text p { color: rgba(255,255,255,0.8); font-size: 13px; margin: 0; }
.why-small-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.why-small-card {
    background: white;
    border: 1px solid #EEEEEE;
    border-radius: 16px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.14);
    padding: 18px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}
.why-small-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.18); transform: translateY(-2px); }
.why-small-card i {
    font-size: 20px;
    color: #185FA5;
    width: 36px;
    height: 36px;
    background: #e8f4ff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.why-small-card strong { display: block; font-size: 13px; color: #2D3748; font-weight: 700; }
.why-small-card span { font-size: 11px; color: #888; }

/* ===== OFFICES ===== */
.about-offices { padding: 40px 40px 0; background: #f8faff; }
.about-offices-inner { max-width: 900px; margin: 0 auto; }
.offices-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }

/* Office card — same homepage card style */
.office-card {
    background: white;
    border: 1px solid #EEEEEE;
    border-radius: 16px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.14);
    padding: 32px 28px;
    transition: all 0.3s ease;
}
.office-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.18); transform: translateY(-2px); }
.office-card-featured { border: 2px solid #185FA5; }
.office-card-top { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.office-icon {
    width: 44px;
    height: 44px;
    background: #e8f4ff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #185FA5;
    font-size: 18px;
    flex-shrink: 0;
}
.office-icon-orange { background: #fff3e8; color: #F47B20; }
.office-city-badge {
    background: #e8f4ff;
    color: #185FA5;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
}
.office-city-badge-orange { background: #fff3e8; color: #F47B20; }
.office-card h3 { font-size: 18px; font-weight: 700; color: #2D3748; margin-bottom: 10px; }
.office-address { font-size: 14px; color: #555; line-height: 1.7; margin-bottom: 20px; }
.office-details { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.office-detail-item { display: flex; align-items: center; gap: 10px; font-size: 13px; color: #555; }
.office-detail-item i { color: #185FA5; width: 16px; }
.office-detail-item a { color: #555; transition: color 0.3s; }
.office-detail-item a:hover { color: #185FA5; }
.office-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: white;
    padding: 11px 22px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    transition: background 0.3s;
    width: 100%;
    justify-content: center;
}
.office-whatsapp-btn:hover { background: #1fba5a; }

/* ===== CTA STRIP ===== */
.about-cta-strip {
    background: linear-gradient(135deg, #185FA5 0%, #0D47A1 100%);
    padding: 64px 40px;
}
.about-cta-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}
.cta-strip-text h2 { font-size: 30px; font-weight: 800; color: white; margin-bottom: 8px; }
.cta-strip-text p { font-size: 15px; color: rgba(255,255,255,0.8); max-width: 480px; }
.cta-strip-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.strip-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 24px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s;
    white-space: nowrap;
}
.strip-btn-white { background: white; color: #185FA5; }
.strip-btn-white:hover { background: #f0f7ff; }
.strip-btn-whatsapp { background: #25D366; color: white; }
.strip-btn-whatsapp:hover { background: #1fba5a; }
.strip-btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.5);
}
.strip-btn-outline:hover { background: rgba(255,255,255,0.1); border-color: white; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .about-story-inner { gap: 48px; }
    .about-why-inner { gap: 48px; }
    .about-mission-inner { grid-template-columns: 1fr; max-width: 500px; }
}
@media (max-width: 768px) {
    .about-hero { height: 420px; }
    .about-hero-content h1 { font-size: 34px; }
    .about-hero-content > p { font-size: 14px; }
    .about-hero-badges { gap: 8px; }
    .hero-badge { font-size: 12px; padding: 8px 14px; }
    .about-stats-strip { padding: 40px 20px; }
    .about-stat-number { font-size: 40px; }
    .about-stat-divider { display: none; }
    .about-story { padding: 56px 20px; }
    .about-story-inner { grid-template-columns: 1fr; gap: 40px; }
    .story-text h2 { font-size: 28px; }
    .about-mission { padding: 56px 20px; }
    .about-mission-inner { max-width: 100%; }
    .about-why { padding: 56px 20px; }
    .about-why-inner { grid-template-columns: 1fr; gap: 40px; }
    .about-offices { padding: 56px 20px; }
    .offices-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .about-cta-strip { padding: 50px 20px; }
    .about-cta-inner { flex-direction: column; align-items: flex-start; }
    .about-section-header h2 { font-size: 26px; }
}
@media (max-width: 480px) {
    .about-hero { height: 380px; }
    .about-hero-content h1 { font-size: 26px; }
    .about-hero-badges { flex-direction: column; align-items: center; }
    .story-cards-grid { grid-template-columns: 1fr; }
    .cta-strip-actions { flex-direction: column; width: 100%; }
    .strip-btn { width: 100%; justify-content: center; }
    .why-small-cards { grid-template-columns: 1fr; }
}
