/* ==========================================================================
   Forge & Finite — About Us Intro Section
   A proper "About Us" page intro: story-driven, team imagery, value pillars.
   ========================================================================== */

/* ── Section shell ─────────────────────────────────────────────────────── */
.abt-intro {
    position: relative;
    overflow: hidden;
    padding: 140px 0 100px;
    background: #ffffff;
}

.dark-mode .abt-intro {
    background: #07080f;
}

/* ── Soft background blobs ─────────────────────────────────────────────── */
.abt-intro__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
    animation: abtBlobDrift 16s ease-in-out infinite alternate;
}

.abt-intro__blob--a {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99,102,241,0.1) 0%, transparent 70%);
    top: -150px;
    right: -100px;
}

.abt-intro__blob--b {
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(236,72,153,0.07) 0%, transparent 70%);
    bottom: -80px;
    left: -80px;
    animation-delay: -6s;
    animation-duration: 13s;
}

.dark-mode .abt-intro__blob--a {
    background: radial-gradient(circle, rgba(99,102,241,0.18) 0%, transparent 70%);
}
.dark-mode .abt-intro__blob--b {
    background: radial-gradient(circle, rgba(236,72,153,0.12) 0%, transparent 70%);
}

@keyframes abtBlobDrift {
    0%   { transform: translate(0, 0) scale(1); }
    50%  { transform: translate(25px, -20px) scale(1.05); }
    100% { transform: translate(-15px, 15px) scale(0.97); }
}

/* ── Container ─────────────────────────────────────────────────────────── */
.abt-intro__container {
    position: relative;
    z-index: 10;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2.5rem;
    width: 100%;
}

/* ── Breadcrumb ────────────────────────────────────────────────────────── */
.abt-intro__breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
    font-size: 0.875rem;
}

.abt-intro__breadcrumb-link {
    color: var(--color-primary, #4f46e5);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.abt-intro__breadcrumb-link:hover {
    color: var(--color-secondary, #7c3aed);
}

.abt-intro__breadcrumb-sep {
    color: #cbd5e1;
    font-size: 0.65rem;
}

.dark-mode .abt-intro__breadcrumb-sep { color: #334155; }

.abt-intro__breadcrumb-current {
    color: #94a3b8;
    font-weight: 500;
}

/* ── Main grid ─────────────────────────────────────────────────────────── */
.abt-intro__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

/* ── Left column: Content ──────────────────────────────────────────────── */

/* Eyebrow */
.abt-intro__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}

.abt-intro__eyebrow-line {
    display: block;
    width: 3px;
    height: 18px;
    background: linear-gradient(to bottom, var(--color-primary, #4f46e5), var(--color-secondary, #7c3aed));
    border-radius: 9999px;
}

.abt-intro__eyebrow-text {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-primary, #4f46e5);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.dark-mode .abt-intro__eyebrow-text { color: #818cf8; }

/* Heading */
.abt-intro__heading {
    font-size: clamp(2.25rem, 4vw, 3.5rem);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.025em;
    color: #0f172a;
    margin-bottom: 1.5rem;
}

.dark-mode .abt-intro__heading { color: #f1f5f9; }

.abt-intro__heading--accent {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Description */
.abt-intro__desc {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 2.5rem;
    max-width: 520px;
}

.dark-mode .abt-intro__desc { color: #94a3b8; }

.abt-intro__desc strong {
    color: #4f46e5;
    font-weight: 700;
}

.dark-mode .abt-intro__desc strong { color: #a78bfa; }

/* Value Pillars */
.abt-intro__pillars {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.abt-intro__pillar {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.1rem 1.5rem;
    background: rgba(99,102,241,0.04);
    border: 1px solid rgba(99,102,241,0.1);
    border-radius: 1rem;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.dark-mode .abt-intro__pillar {
    background: rgba(99,102,241,0.06);
    border-color: rgba(99,102,241,0.15);
}

.abt-intro__pillar:hover {
    transform: translateX(6px);
    background: rgba(99,102,241,0.08);
    border-color: rgba(99,102,241,0.22);
    box-shadow: 0 8px 24px -6px rgba(99,102,241,0.1);
}

.dark-mode .abt-intro__pillar:hover {
    background: rgba(99,102,241,0.1);
    border-color: rgba(99,102,241,0.3);
}

.abt-intro__pillar-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1rem;
    box-shadow: 0 4px 12px -2px rgba(99,102,241,0.35);
    transition: transform 0.3s ease;
}

.abt-intro__pillar:hover .abt-intro__pillar-icon {
    transform: scale(1.1) rotate(5deg);
}

.abt-intro__pillar-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.2rem;
}

.dark-mode .abt-intro__pillar-title { color: #e2e8f0; }

.abt-intro__pillar-desc {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.5;
}

.dark-mode .abt-intro__pillar-desc { color: #94a3b8; }

/* CTA Buttons */
.abt-intro__cta-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.abt-intro__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.abt-intro__cta--primary {
    background: linear-gradient(135deg, var(--color-primary, #4f46e5), var(--color-secondary, #7c3aed));
    color: #ffffff;
    box-shadow: 0 6px 20px -4px rgba(99,102,241,0.4);
}

.abt-intro__cta--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 28px -6px rgba(99,102,241,0.5);
    color: #ffffff;
}

.abt-intro__cta--primary i {
    transition: transform 0.3s ease;
}
.abt-intro__cta--primary:hover i {
    transform: translateY(4px);
}

.abt-intro__cta--outline {
    background: transparent;
    border: 2px solid rgba(99,102,241,0.3);
    color: var(--color-primary, #4f46e5);
}

.dark-mode .abt-intro__cta--outline {
    border-color: rgba(129,140,248,0.35);
    color: #818cf8;
}

.abt-intro__cta--outline:hover {
    background: rgba(99,102,241,0.06);
    border-color: rgba(99,102,241,0.55);
    transform: translateY(-2px);
    color: #4338ca;
}

.dark-mode .abt-intro__cta--outline:hover {
    background: rgba(99,102,241,0.1);
    color: #c4b5fd;
}

/* ── Right column: Image Collage ───────────────────────────────────────── */
.abt-intro__visual {
    position: relative;
    height: 520px;
}

/* All image blocks */
.abt-intro__img {
    position: absolute;
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 20px 40px -12px rgba(0,0,0,0.15);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
}

.dark-mode .abt-intro__img {
    box-shadow: 0 20px 40px -12px rgba(0,0,0,0.45);
}

.abt-intro__img:hover {
    transform: scale(1.03) translateY(-6px);
    box-shadow: 0 32px 64px -20px rgba(99,102,241,0.2);
    z-index: 20;
}

.dark-mode .abt-intro__img:hover {
    box-shadow: 0 32px 64px -20px rgba(0,0,0,0.6);
}

.abt-intro__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.abt-intro__img:hover img {
    transform: scale(1.06);
}

/* Main large image — left + tall */
.abt-intro__img--main {
    width: 62%;
    height: 85%;
    top: 0;
    left: 0;
    z-index: 10;
}

/* Overlay inside main image */
.abt-intro__img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.25rem;
    background: linear-gradient(to top, rgba(15,23,42,0.75) 0%, transparent 100%);
}

.abt-intro__img-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 9999px;
    padding: 0.45rem 1rem;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 600;
}

.abt-intro__img-badge i {
    color: #a5b4fc;
    font-size: 0.875rem;
}

/* Small top-right image */
.abt-intro__img--sm {
    width: 46%;
    height: 42%;
}

.abt-intro__img--tr {
    top: 0;
    right: 0;
    z-index: 8;
}

/* Small bottom-right image */
.abt-intro__img--br {
    bottom: 0;
    right: 0;
    z-index: 8;
    border: 4px solid #ffffff;
}

.dark-mode .abt-intro__img--br {
    border-color: #1e293b;
}

/* ── Floating Experience Card ──────────────────────────────────────────── */
.abt-intro__exp-card {
    position: absolute;
    bottom: 20px;
    left: -20px;
    z-index: 30;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 1rem;
    padding: 1.25rem 1.5rem;
    color: #ffffff;
    box-shadow: 0 16px 40px -8px rgba(99,102,241,0.5);
    text-align: center;
    animation: expCardFloat 5s ease-in-out infinite alternate;
}

@keyframes expCardFloat {
    0%   { transform: translateY(0) rotate(-1deg); }
    100% { transform: translateY(-12px) rotate(1deg); }
}

.abt-intro__exp-number {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.04em;
}

.abt-intro__exp-number span {
    font-size: 1.5rem;
    font-weight: 700;
}

.abt-intro__exp-label {
    font-size: 0.75rem;
    font-weight: 600;
    opacity: 0.9;
    margin-top: 0.3rem;
    line-height: 1.3;
}

/* ── Floating Satisfaction Badge ───────────────────────────────────────── */
.abt-intro__sat-card {
    position: absolute;
    top: 40px;
    right: -25px;
    z-index: 30;
    background: #ffffff;
    border: 1px solid rgba(99,102,241,0.15);
    border-radius: 1rem;
    padding: 0.875rem 1.25rem;
    box-shadow: 0 12px 32px -6px rgba(99,102,241,0.15);
    animation: satCardFloat 6s ease-in-out infinite alternate;
}

.dark-mode .abt-intro__sat-card {
    background: #1e293b;
    border-color: rgba(99,102,241,0.25);
    box-shadow: 0 12px 32px -6px rgba(0,0,0,0.4);
}

@keyframes satCardFloat {
    0%   { transform: translateY(0) rotate(1deg); }
    100% { transform: translateY(-10px) rotate(-1deg); }
}

.abt-intro__sat-stars {
    display: flex;
    gap: 2px;
    color: #f59e0b;
    font-size: 0.875rem;
    margin-bottom: 0.35rem;
}

.abt-intro__sat-text {
    font-size: 0.78rem;
    font-weight: 700;
    color: #1e293b;
    white-space: nowrap;
}

.dark-mode .abt-intro__sat-text { color: #e2e8f0; }

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1024px) {
    .abt-intro { padding: 120px 0 80px; }

    .abt-intro__grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .abt-intro__content {
        max-width: 640px;
        margin: 0 auto;
    }

    .abt-intro__visual {
        height: 460px;
        max-width: 560px;
        margin: 0 auto;
        width: 100%;
    }

    .abt-intro__sat-card { right: 0; }
}

@media (max-width: 768px) {
    .abt-intro { padding: 110px 0 60px; }
    .abt-intro__container { padding: 0 1.5rem; }

    .abt-intro__heading { font-size: clamp(2rem, 6vw, 2.75rem); }

    .abt-intro__desc { font-size: 1rem; }

    .abt-intro__visual { height: 380px; }

    .abt-intro__img--main { width: 65%; height: 82%; }
    .abt-intro__img--sm { width: 44%; height: 40%; }

    .abt-intro__exp-card { left: -10px; padding: 1rem 1.25rem; }
    .abt-intro__exp-number { font-size: 2rem; }

    .abt-intro__sat-card { right: -5px; padding: 0.75rem 1rem; }
}

@media (max-width: 480px) {
    .abt-intro { padding: 100px 0 50px; }
    .abt-intro__container { padding: 0 1.125rem; }

    .abt-intro__heading { font-size: clamp(1.75rem, 7vw, 2.25rem); }

    .abt-intro__desc { font-size: 0.95rem; }

    .abt-intro__pillars { gap: 0.875rem; }
    .abt-intro__pillar { padding: 0.875rem 1.1rem; }
    .abt-intro__pillar-icon { width: 36px; height: 36px; min-width: 36px; font-size: 0.875rem; }
    .abt-intro__pillar-title { font-size: 0.9rem; }
    .abt-intro__pillar-desc { font-size: 0.8rem; }

    .abt-intro__cta { padding: 0.75rem 1.5rem; font-size: 0.875rem; }

    .abt-intro__visual { height: 310px; }

    .abt-intro__img--main { width: 68%; height: 80%; }
    .abt-intro__img--sm { width: 42%; height: 37%; }

    .abt-intro__exp-card { left: -8px; bottom: 10px; }
    .abt-intro__exp-number { font-size: 1.75rem; }
    .abt-intro__exp-label { font-size: 0.65rem; }

    .abt-intro__sat-card { right: -5px; top: 20px; }
    .abt-intro__sat-stars { font-size: 0.75rem; }
    .abt-intro__sat-text { font-size: 0.7rem; }
}

@media (max-width: 360px) {
    .abt-intro__heading { font-size: 1.6rem; }
    .abt-intro__visual { height: 270px; }
    .abt-intro__img--sm { width: 40%; height: 35%; }
}

/* ==========================================================================
   Mobile "Desktop Site" Mode Adjustments
   ========================================================================== */
.mobile-desktop-mode .abt-intro__grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 2.5rem !important; /* Elegant compact gap for simulated desktop screens */
}

.mobile-desktop-mode .abt-intro__content {
    max-width: 100% !important;
    margin: 0 !important;
}

.mobile-desktop-mode .abt-intro__visual {
    max-width: 100% !important;
    margin: 0 !important;
    height: 480px !important; /* Ensure the image collage has a proper height */
}


