/* ================================================================
   about.css — Shiv Transport Packers & Movers — About Page
   Path: /assets/css/about.css
   Depends on: /assets/css/master.css (loaded first)
   ================================================================ */

/* ── 1. PAGE HERO ──────────────────────────────────────────────── */
.about-hero {
    position: relative;
    background: linear-gradient(135deg, #071e35 0%, #0B2C4D 45%, #0d3d6e 100%);
    padding: 80px 0 72px;
    overflow: hidden;
    text-align: center;
}

/* Geometric texture overlay */
.about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.055) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

/* Orange glow accent */
.about-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 60% at 15% 80%, rgba(242,101,34,0.18) 0%, transparent 70%),
        radial-gradient(ellipse 50% 50% at 85% 20%, rgba(242,101,34,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.about-hero-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
}

.about-hero-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
    color: var(--white);
    line-height: 1.18;
    margin: 14px 0 20px;
    font-weight: 800;
}

.about-hero-sub {
    font-size: 1.08rem;
    color: rgba(255,255,255,0.78);
    line-height: 1.8;
    max-width: 640px;
    margin: 0 auto 28px;
}
.about-hero-sub strong { color: var(--accent); }

/* Breadcrumb */
.about-hero-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.83rem;
    color: rgba(255,255,255,0.55);
    font-family: var(--font-head);
    font-weight: 500;
}
.about-hero-breadcrumb a {
    color: rgba(255,255,255,0.7);
    transition: color var(--ease);
}
.about-hero-breadcrumb a:hover { color: var(--accent); }
.about-hero-breadcrumb i { font-size: 0.7rem; }
.about-hero-breadcrumb span { color: var(--accent); }

/* ── 2. COMPANY INTRO ──────────────────────────────────────────── */
.about-intro { background: var(--white); }

.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Left: text */
.about-intro-text .section-title { margin-top: 12px; }

.about-intro-text p {
    font-size: 0.97rem;
    color: var(--text);
    line-height: 1.85;
    max-width: 580px;
}

/* Highlight pills row */
.about-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}
.highlight-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--light);
    border: 1.5px solid var(--border);
    border-radius: 20px;
    padding: 7px 16px;
    font-family: var(--font-head);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    transition: background var(--ease), border-color var(--ease), color var(--ease);
}
.highlight-pill i   { color: var(--accent); }
.highlight-pill:hover {
    background: rgba(242,101,34,0.08);
    border-color: rgba(242,101,34,0.35);
    color: var(--accent);
}

/* Right: image card */
.about-img-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: visible;
}

.about-company-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    background: var(--light);
    display: block;
    box-shadow: var(--shadow-lg);
}

/* Floating badge bottom-left */
.about-img-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.14);
    z-index: 2;
}
.badge-icon {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(242,101,34,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--accent);
    flex-shrink: 0;
}
.badge-text strong {
    display: block;
    font-family: var(--font-head);
    font-size: 0.95rem;
    color: var(--primary);
}
.badge-text span {
    font-size: 0.76rem;
    color: var(--muted);
}

/* GST tag top-right */
.about-gst-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(11,44,77,0.92);
    color: rgba(255,255,255,0.85);
    font-size: 0.73rem;
    font-family: var(--font-head);
    padding: 6px 12px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(4px);
}
.about-gst-tag i    { color: var(--accent); }
.about-gst-tag strong { color: var(--white); }

/* ── 3. STATS BAND ──────────────────────────────────────────────── */
.about-stats-band {
    background: var(--primary);
    padding: 56px 0;
    position: relative;
    overflow: hidden;
}
.about-stats-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 24px 24px;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    z-index: 1;
}

.about-stat-item {
    text-align: center;
    padding: 28px 20px;
    border-right: 1px solid rgba(255,255,255,0.1);
    transition: background var(--ease);
}
.about-stat-item:last-child { border-right: none; }
.about-stat-item:hover { background: rgba(255,255,255,0.04); }

.ast-icon {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: rgba(242,101,34,0.16);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    color: var(--accent);
    margin: 0 auto 14px;
}

.ast-figure {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    margin-bottom: 8px;
    line-height: 1;
}
.ast-num {
    font-family: var(--font-head);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--white);
}
.ast-sfx {
    font-family: var(--font-head);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent);
}
.ast-label {
    font-family: var(--font-head);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}
.ast-sub {
    font-size: 0.77rem;
    color: rgba(255,255,255,0.5);
}

/* ── 4. FOUNDER SECTION ─────────────────────────────────────────── */
.founder-section { background: var(--light); }

.founder-wrap {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
    align-items: flex-start;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px 48px 48px 44px;
    box-shadow: var(--shadow);
    border: 1.5px solid var(--border);
    position: relative;
    overflow: hidden;
}

/* Decorative accent bar */
.founder-wrap::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 5px; height: 100%;
    background: linear-gradient(180deg, var(--accent) 0%, var(--accent-dark) 100%);
}

/* Founder image column */
.founder-visual { text-align: center; }

.founder-img-wrap {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 4px solid var(--accent);
    box-shadow: 0 8px 28px rgba(242,101,34,0.25);
    background: var(--light);
    position: relative;
}
.founder-img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.founder-avatar-fallback {
    display: none;
    width: 100%; height: 100%;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--primary);
    background: var(--light);
}

.founder-name-card {
    background: var(--primary);
    border-radius: var(--radius);
    padding: 14px 18px;
    color: var(--white);
}
.founder-name-card strong {
    display: block;
    font-family: var(--font-head);
    font-size: 1.05rem;
    margin-bottom: 3px;
    color: var(--white);
}
.founder-name-card > span {
    display: block;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.65);
    margin-bottom: 12px;
}
.founder-contact-links {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 2px;
}
.founder-contact-links a {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.85rem;
    transition: background var(--ease);
}
.founder-contact-links a:first-child:hover { background: var(--accent); }
.founder-contact-links a:last-child:hover  { background: #25D366; }

/* Founder message */
.founder-message { padding-top: 4px; }
.founder-message .section-title { margin-top: 10px; }

.founder-quote-mark {
    font-family: Georgia, serif;
    font-size: 5rem;
    color: var(--accent);
    line-height: 0.5;
    margin-bottom: 12px;
    opacity: 0.35;
}

.founder-message p {
    font-size: 0.97rem;
    color: var(--text);
    line-height: 1.85;
    max-width: 580px;
}
.founder-message p strong { color: var(--primary); }

.founder-signature {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1.5px dashed var(--border);
}
.sig-line {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--primary);
    font-family: var(--font-head);
    font-weight: 600;
    margin-bottom: 6px;
}
.sig-line i { color: var(--accent); }
.sig-year {
    font-size: 0.8rem;
    color: var(--muted);
}

/* ── 5. MISSION & VISION ────────────────────────────────────────── */
.mv-section { background: var(--white); }

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 16px;
}

.mv-card {
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    position: relative;
    overflow: hidden;
    border: 1.5px solid transparent;
    transition: box-shadow var(--ease), transform var(--ease);
}
.mv-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.mission-card {
    background: var(--light);
    border-color: var(--border);
}
.vision-card {
    background: var(--primary);
}

/* Decorative corner blob */
.mv-card::after {
    content: '';
    position: absolute;
    bottom: -30px; right: -30px;
    width: 120px; height: 120px;
    border-radius: 50%;
    pointer-events: none;
}
.mission-card::after { background: rgba(242,101,34,0.08); }
.vision-card::after  { background: rgba(255,255,255,0.05); }

.mv-icon {
    width: 60px; height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
}
.mission-card .mv-icon {
    background: rgba(242,101,34,0.12);
    color: var(--accent);
}
.vision-card .mv-icon {
    background: rgba(255,255,255,0.12);
    color: var(--accent);
}

.mv-card h3 {
    font-size: 1.25rem;
    margin-bottom: 16px;
    position: relative; z-index: 1;
}
.mission-card h3 { color: var(--primary); }
.vision-card  h3 { color: var(--white); }

.mv-quote {
    font-size: 0.97rem;
    line-height: 1.8;
    margin-bottom: 22px;
    font-style: italic;
    position: relative; z-index: 1;
}
.mission-card .mv-quote { color: var(--text); }
.vision-card  .mv-quote { color: rgba(255,255,255,0.78); }

.mv-points {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative; z-index: 1;
}
.mv-points li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    font-family: var(--font-head);
    font-weight: 600;
}
.mission-card .mv-points li { color: var(--primary); }
.vision-card  .mv-points li { color: rgba(255,255,255,0.85); }

.mv-points li i { color: var(--accent); font-size: 0.9rem; flex-shrink: 0; }

/* ── 6. WHY CHOOSE US ───────────────────────────────────────────── */
.about-why { background: var(--light); }

.why-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 16px;
}

.why-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px 24px;
    border: 1.5px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.why-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--ease);
}
.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(242,101,34,0.2);
}
.why-card:hover::after { transform: scaleX(1); }

.wc-icon {
    width: 56px; height: 56px;
    border-radius: 12px;
    background: rgba(242,101,34,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--accent);
    margin-bottom: 18px;
    transition: background var(--ease), color var(--ease);
}
.why-card:hover .wc-icon {
    background: var(--accent);
    color: var(--white);
}

.why-card h3 {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 10px;
}
.why-card p {
    font-size: 0.86rem;
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
}

/* ── 7. CTA SECTION ─────────────────────────────────────────────── */
.about-cta-section {
    background: linear-gradient(135deg, #061929 0%, #0B2C4D 50%, #0f3d6e 100%);
    padding: 72px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.about-cta-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 70% at 10% 90%, rgba(242,101,34,0.18) 0%, transparent 65%),
        radial-gradient(ellipse 45% 55% at 90% 10%, rgba(242,101,34,0.12) 0%, transparent 65%);
    pointer-events: none;
}

.about-cta-inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.about-cta-text { margin-bottom: 36px; }
.about-cta-text h2 {
    color: var(--white);
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    margin-bottom: 14px;
    line-height: 1.3;
}
.about-cta-text p {
    color: rgba(255,255,255,0.72);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.about-cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.btn-wa-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: var(--white);
    padding: 11px 24px;
    border-radius: var(--radius);
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.9rem;
    transition: background var(--ease), transform var(--ease);
}
.btn-wa-cta:hover { background: #1fb859; transform: translateY(-2px); }

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--white);
    padding: 11px 24px;
    border: 2px solid rgba(255,255,255,0.45);
    border-radius: var(--radius);
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--ease);
}
.btn-outline-white:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.08);
}

/* Trust micro-line */
.about-cta-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.55);
    font-family: var(--font-head);
}
.about-cta-trust span {
    display: flex;
    align-items: center;
    gap: 6px;
}
.about-cta-trust i { color: var(--accent); }

/* ── RESPONSIVE ─────────────────────────────────────────────────── */

/* 1024px — tablet */
@media (max-width: 1023px) {
    .about-intro-grid      { grid-template-columns: 1fr; gap: 40px; }
    .about-intro-text p    { max-width: 100%; }
    .about-intro-visual    { max-width: 420px; margin: 0 auto; }

    .about-stats-grid      { grid-template-columns: repeat(2, 1fr); }
    .about-stat-item       { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .about-stat-item:nth-child(odd)     { border-right: 1px solid rgba(255,255,255,0.1); }
    .about-stat-item:nth-child(3),
    .about-stat-item:nth-child(4)       { border-bottom: none; }

    .founder-wrap          { grid-template-columns: 1fr; gap: 36px; padding: 36px 28px; }
    .founder-visual        { display: grid; grid-template-columns: auto 1fr; gap: 24px; align-items: center; text-align: left; }
    .founder-img-wrap      { width: 130px; height: 130px; margin: 0; }
    .founder-avatar-fallback { font-size: 3rem; }

    .mv-grid               { grid-template-columns: 1fr; gap: 20px; }
    .why-cards-grid        { grid-template-columns: repeat(2, 1fr); }
}

/* 767px — large mobile */
@media (max-width: 767px) {
    .about-hero            { padding: 60px 0 52px; }
    .about-hero-title      { font-size: 1.75rem; }

    .about-img-card        { max-width: 100%; }
    .about-company-img     { height:100%; width:280px}
    .about-img-badge       { left: 12px; bottom: -16px; padding: 12px 14px; gap: 10px; }

    .about-stats-grid      { grid-template-columns: 1fr 1fr; }

    .founder-visual        { grid-template-columns: 1fr; text-align: center; }
    .founder-img-wrap      { margin: 0 auto; }

    .why-cards-grid        { grid-template-columns: 1fr; }

    .about-cta-actions     { flex-direction: column; align-items: stretch; }
    .about-cta-actions a   { justify-content: center; }
    .about-cta-trust       { flex-direction: column; gap: 10px; }
}

/* 480px — small mobile */
@media (max-width: 480px) {
    .about-stats-grid      { grid-template-columns: 1fr; }
    .about-stat-item       { border-right: none !important; }
    .about-stat-item:nth-child(-n+3) { border-bottom: 1px solid rgba(255,255,255,0.1); }
    .about-stat-item:last-child      { border-bottom: none; }

    .about-highlights      { gap: 8px; }
    .highlight-pill        { font-size: 0.75rem; padding: 6px 12px; }

    .mv-card               { padding: 28px 22px; }
    .founder-wrap          { padding: 28px 20px; }
    .founder-message p     { max-width: 100%; }
}