/**
 * biz-kimiz.css - Hakkımızda (Techno Slim Hero + Roadmap)
 * Motopazar Web
 */

/* ===================== HERO — TECHNO SLIM ===================== */

.about-hero {
    position: relative;
    padding: 1.35rem 0 1.5rem;
    background: #08080f;
    overflow: hidden;
}

.about-hero-canvas {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

/* Scan line sweep */
.ah-scan {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(227, 30, 36, 0.03) 50%,
        transparent 100%
    );
    background-size: 100% 8px;
    animation: ahScanMove 4s linear infinite;
    opacity: 0.6;
}

@keyframes ahScanMove {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

/* Pulse glow */
.ah-pulse {
    position: absolute;
    width: 500px;
    height: 120px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse, rgba(227, 30, 36, 0.12) 0%, transparent 70%);
    animation: ahPulse 3s ease-in-out infinite;
}

@keyframes ahPulse {
    0%, 100% { opacity: 0.4; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.15); }
}

/* Circuit SVG lines */
.ah-circuit {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.06;
}

.ah-circuit-path {
    fill: none;
    stroke: var(--primary-red);
    stroke-width: 1;
    stroke-dasharray: 8 12;
    animation: ahCircuitDash 20s linear infinite;
}

.ah-circuit-path-2 {
    stroke: rgba(255, 255, 255, 0.5);
    stroke-dasharray: 4 18;
    animation-duration: 28s;
    animation-direction: reverse;
}

@keyframes ahCircuitDash {
    to { stroke-dashoffset: -200; }
}

/* Bottom glow edge */
.ah-glow-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 5%, var(--primary-red) 50%, transparent 95%);
    opacity: 0.35;
    z-index: 4;
}

.ah-glow-bottom::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30px;
    background: linear-gradient(to top, #EDEDF0, transparent);
    z-index: 5;
}

/* ===================== HERO LAYOUT ===================== */

.about-hero .container {
    position: relative;
    z-index: 3;
}

.about-hero-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

/* Left side */
.ah-left {
    flex: 1;
    min-width: 0;
}

.ah-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: var(--primary-red);
    text-transform: uppercase;
    margin-bottom: 0.4rem;
    opacity: 0.7;
}

.ah-tag i {
    font-size: 0.65rem;
}

.ah-title {
    font-size: 1.75rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 0.3rem;
    letter-spacing: -0.3px;
    line-height: 1.2;
    white-space: nowrap;
}

.ah-title span {
    font-weight: 800;
    color: #ffffff;
    position: relative;
}

.ah-title span::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-red), transparent);
    border-radius: 2px;
}

.ah-desc {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
    margin: 0;
    font-weight: 400;
}

/* Trust chips — right side */
.ah-trust-strip {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.ah-trust-chip {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.7rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.25s ease;
}

.ah-trust-chip:hover {
    background: rgba(227, 30, 36, 0.08);
    border-color: rgba(227, 30, 36, 0.15);
    transform: translateY(-1px);
}

.ah-trust-chip i {
    font-size: 0.72rem;
    color: var(--primary-red);
    opacity: 0.8;
}

.ah-trust-chip span {
    font-size: 0.68rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.2px;
    white-space: nowrap;
}

/* ===================== ROADMAP SECTION ===================== */

.about-roadmap-section {
    padding: 3rem 0 2rem;
    background-color: #EDEDF0;
}

.about-roadmap-section .container {
    max-width: 800px;
}

.roadmap-wrapper {
    position: relative;
}

/* ===================== ROADMAP ITEM ===================== */

.roadmap-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 0;
}

.roadmap-icon-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.roadmap-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #E31E24, #ff4d4d);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.4rem;
    box-shadow: 0 4px 15px rgba(227, 30, 36, 0.3);
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.roadmap-line {
    width: 3px;
    flex: 1;
    background: linear-gradient(180deg, var(--primary-red), rgba(227, 30, 36, 0.2));
    border-radius: 3px;
    min-height: 20px;
}

.roadmap-item:last-child .roadmap-line {
    display: none;
}

/* ===================== ROADMAP CARD ===================== */

.roadmap-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 1.75rem 2rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid #f0f0f0;
    flex: 1;
    margin-bottom: 1.5rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
}

.roadmap-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.roadmap-card-badge {
    display: inline-block;
    background: linear-gradient(135deg, #fef2f2, #fff1f2);
    color: var(--primary-red);
    padding: 0.3rem 0.85rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
    border: 1px solid rgba(227, 30, 36, 0.1);
}

.roadmap-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem;
}

.roadmap-card-text {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.75;
    margin: 0;
}

/* ===================== TARGET STEP (HEDEF) ===================== */

.roadmap-icon-target {
    background: linear-gradient(135deg, #f59e0b, #f97316);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.35);
    width: 64px;
    height: 64px;
    font-size: 1.6rem;
}

.roadmap-card-target {
    background: linear-gradient(135deg, #fffbeb, #fff7ed);
    border-color: rgba(245, 158, 11, 0.2);
}

.roadmap-card-target:hover {
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.12);
}

.roadmap-badge-target {
    background: linear-gradient(135deg, #fef3c7, #ffedd5);
    color: #b45309;
    border-color: rgba(245, 158, 11, 0.2);
}

.roadmap-card-target .roadmap-card-title {
    color: #92400e;
}

.roadmap-card-target .roadmap-card-text {
    color: #78350f;
    font-weight: 500;
}

/* ===================== SOCIAL CTA SECTION ===================== */

.about-social-section {
    padding: 1rem 0 3rem;
    background-color: #EDEDF0;
}

.about-social-section .container {
    max-width: 800px;
}

.about-social-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 3rem 2.5rem;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid #f0f0f0;
}

.about-social-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 0.5rem;
}

.about-social-subtitle {
    font-size: 0.95rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.about-social-buttons {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.about-social-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.75rem;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.25s ease;
    min-width: 240px;
}

.about-social-btn i {
    font-size: 2rem;
    flex-shrink: 0;
}

.about-social-btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about-social-btn-label {
    font-size: 0.95rem;
    font-weight: 700;
}

.about-social-btn-handle {
    font-size: 0.8rem;
    opacity: 0.85;
}

.about-social-btn-instagram {
    background: linear-gradient(135deg, #833AB4, #E1306C, #F77737);
    color: #ffffff;
}

.about-social-btn-instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(225, 48, 108, 0.35);
    color: #ffffff;
}

.about-social-btn-whatsapp {
    background: linear-gradient(135deg, #128C7E, #25D366);
    color: #ffffff;
}

.about-social-btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
    color: #ffffff;
}

/* ===================== BACK BUTTON ===================== */

.about-back-section {
    padding: 0 0 4rem;
    background-color: #EDEDF0;
}

.about-back-home {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.6rem 1.5rem;
    border: 1.5px solid var(--primary-red);
    border-radius: 8px;
    transition: all 0.2s ease;
}

.about-back-home:hover {
    background-color: var(--primary-red);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(227, 30, 36, 0.2);
}

.about-back-home i {
    font-size: 1rem;
    transition: transform 0.2s;
}

.about-back-home:hover i {
    transform: translateX(-3px);
}

/* ===================== RESPONSIVE ===================== */

/* Tablet */
@media (max-width: 991px) {
    .about-hero-row {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .ah-left {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .ah-title span::after {
        left: 50%;
        transform: translateX(-50%);
        width: 70%;
    }

    .ah-trust-strip {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .about-hero {
        padding: 1.15rem 0 1.25rem;
    }

    .ah-title {
        font-size: 1.45rem;
    }

    .ah-desc {
        font-size: 0.72rem;
    }

    .ah-trust-strip {
        gap: 0.35rem;
    }

    .ah-trust-chip {
        padding: 0.3rem 0.55rem;
        border-radius: 6px;
    }

    .ah-trust-chip i {
        font-size: 0.6rem;
    }

    .ah-trust-chip span {
        font-size: 0.6rem;
    }

    .ah-pulse {
        width: 300px;
        height: 80px;
    }

    .about-roadmap-section {
        padding: 2.5rem 0 1rem;
    }

    .roadmap-item {
        gap: 1rem;
    }

    .roadmap-icon {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }

    .roadmap-icon-target {
        width: 52px;
        height: 52px;
        font-size: 1.3rem;
    }

    .roadmap-card {
        padding: 1.25rem 1.5rem;
        border-radius: 12px;
    }

    .roadmap-card-title {
        font-size: 1.1rem;
    }

    .roadmap-card-text {
        font-size: 0.9rem;
    }

    .about-social-card {
        padding: 2rem 1.5rem;
    }

    .about-social-title {
        font-size: 1.25rem;
    }

    .about-social-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-social-btn {
        min-width: unset;
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .about-hero {
        padding: 1rem 0 1.1rem;
    }

    .ah-tag {
        font-size: 0.5rem;
        letter-spacing: 2px;
    }

    .ah-title {
        font-size: 1.2rem;
        white-space: normal;
    }

    .ah-desc {
        font-size: 0.65rem;
    }

    .ah-trust-chip {
        padding: 0.25rem 0.45rem;
        gap: 0.3rem;
    }

    .ah-trust-chip span {
        font-size: 0.55rem;
    }

    .ah-trust-chip i {
        font-size: 0.55rem;
    }

    .roadmap-item {
        gap: 0.75rem;
    }

    .roadmap-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .roadmap-icon-target {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }

    .roadmap-line {
        width: 2px;
    }

    .roadmap-card {
        padding: 1rem 1.25rem;
    }

    .roadmap-card-badge {
        font-size: 0.7rem;
        padding: 0.25rem 0.65rem;
    }

    .roadmap-card-title {
        font-size: 1rem;
    }

    .roadmap-card-text {
        font-size: 0.85rem;
        line-height: 1.65;
    }

    .about-social-card {
        padding: 1.5rem 1.25rem;
        border-radius: 14px;
    }

    .about-social-title {
        font-size: 1.1rem;
    }

    .about-social-subtitle {
        font-size: 0.85rem;
    }

    .about-social-btn {
        padding: 0.85rem 1.25rem;
        border-radius: 12px;
    }

    .about-social-btn i {
        font-size: 1.6rem;
    }

    .about-social-btn-label {
        font-size: 0.85rem;
    }

    .about-social-btn-handle {
        font-size: 0.75rem;
    }

    .about-back-section {
        padding: 0 0 3rem;
    }
}
