﻿/* =====================================================
   ABOUT PAGE
   Samsun Göçük Timi Mert Otomotiv
===================================================== */


.about-page {
    position: relative;
    overflow: hidden;
    background: radial-gradient( circle at 80% 10%, rgba(0,220,255,.14), transparent 35% ), radial-gradient( circle at 10% 80%, rgba(0,180,255,.08), transparent 30% ), #050d18;
    color: white;
    padding-top: 110px;
    padding-bottom: 80px;
}






/* =====================================================
   HERO
===================================================== */


.about-hero {
    position: relative;
    padding: 60px 0 40px;
}



.about-hero-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    align-items: center;
    gap: 60px;
}





.about-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: .45;
    pointer-events: none;
}



.glow-one {
    width: 320px;
    height: 320px;
    background: #00dcff;
    top: -100px;
    right: 120px;
}



.glow-two {
    width: 260px;
    height: 260px;
    background: #008cff;
    bottom: 0;
    left: 80px;
}







/* =====================================================
   HERO TEXT
===================================================== */


.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 50px;
    background: rgba(0,220,255,.08);
    border: 1px solid rgba(0,220,255,.35);
    color: #00dcff;
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 22px;
}



.about-hero h1 {
    font-size: 52px;
    line-height: 1.15;
    font-weight: 900;
    margin-bottom: 22px;
}



    .about-hero h1 span {
        color: #00dcff;
    }



.about-hero p {
    max-width: 620px;
    font-size: 17px;
    line-height: 1.8;
    color: #b6c7da;
    margin-bottom: 30px;
}






.about-primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: 50px;
    background: #00dcff;
    color: #04111c;
    font-weight: 700;
    text-decoration: none;
    transition: .35s;
}



    .about-primary-btn:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 45px rgba(0,220,255,.4);
    }







/* =====================================================
   HERO CARD
===================================================== */


.about-visual {
    display: flex;
    justify-content: center;
}



.car-card {
    width: 280px;
    height: 280px;
    border-radius: 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient( 145deg, rgba(255,255,255,.10), rgba(255,255,255,.03) );
    border: 1px solid rgba(255,255,255,.18);
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,.4);
    animation: cardFloat 5s ease-in-out infinite;
}



@keyframes cardFloat {


    0% {
        transform: translateY(0);
    }


    50% {
        transform: translateY(-15px);
    }


    100% {
        transform: translateY(0);
    }
}





.car-light {
    position: absolute;
    width: 180px;
    height: 180px;
    background: #00dcff;
    filter: blur(90px);
    animation: glowMove 5s infinite alternate;
}



@keyframes glowMove {


    from {
        transform: translate(-30px,-20px);
    }


    to {
        transform: translate(30px,20px);
    }
}




.car-card i {
    font-size: 65px;
    color: #00dcff;
    z-index: 2;
}



.car-card h3 {
    font-size: 55px;
    margin: 10px 0 0;
    z-index: 2;
}



.car-card p {
    color: #b7c9da;
    z-index: 2;
}








/* =====================================================
   STATS
===================================================== */


.about-stats {
    padding: 35px 0;
}



.stats-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
}



.stat-card {
    padding: 28px;
    text-align: center;
    border-radius: 22px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.12);
    transition: .35s;
}



    .stat-card:hover {
        transform: translateY(-10px);
        border-color: #00dcff;
        box-shadow: 0 20px 60px rgba(0,220,255,.18);
    }



    .stat-card i {
        font-size: 35px;
        color: #00dcff;
    }



    .stat-card strong {
        display: block;
        font-size: 45px;
        margin: 12px 0;
    }



    .stat-card span {
        color: #aabbd0;
    }








/* =====================================================
   DETAIL
===================================================== */


.about-detail {
    padding: 45px 0;
}



.detail-box {
    max-width: 1000px;
    margin: auto;
}



    .detail-box h2 {
        font-size: 36px;
        margin-bottom: 25px;
    }



        .detail-box h2 span {
            color: #00dcff;
        }



    .detail-box p {
        color: #b7c8da;
        font-size: 17px;
        line-height: 1.9;
        margin-bottom: 18px;
    }








/* =====================================================
   SERVICES
===================================================== */


.about-services {
    padding: 55px 0;
}



.section-head {
    text-align: center;
    margin-bottom: 40px;
}



    .section-head span {
        color: #00dcff;
        font-size: 13px;
        letter-spacing: 2px;
    }



    .section-head h2 {
        font-size: 38px;
    }



    .section-head strong {
        color: #00dcff;
    }





.service-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
}





.service-card {
    padding: 28px;
    border-radius: 24px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.1);
    transition: .35s;
}



    .service-card:hover {
        transform: translateY(-10px);
        border-color: #00dcff;
        box-shadow: 0 20px 60px rgba(0,220,255,.15);
    }



    .service-card i {
        font-size: 38px;
        color: #00dcff;
    }



    .service-card h3 {
        margin: 18px 0 10px;
    }



    .service-card p {
        color: #b5c7da;
        line-height: 1.6;
    }








/* =====================================================
   BOTTOM
===================================================== */


.about-bottom {
    padding: 35px 0;
}



.bottom-card {
    padding: 35px;
    border-radius: 25px;
    background: linear-gradient( 135deg, rgba(0,220,255,.12), rgba(255,255,255,.03) );
    border: 1px solid rgba(0,220,255,.25);
}



    .bottom-card ul {
        list-style: none;
        padding: 0;
    }



    .bottom-card li {
        margin-bottom: 14px;
        color: #c4d5e8;
    }



        .bottom-card li::before {
            content: "✓";
            color: #00dcff;
            margin-right: 12px;
        }







/* =====================================================
   REVEAL
===================================================== */


.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: .8s ease;
}



    .reveal.active {
        opacity: 1;
        transform: none;
    }







/* =====================================================
   RESPONSIVE
===================================================== */


@media(max-width:1100px) {


    .about-hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }


    .about-hero p {
        margin-left: auto;
        margin-right: auto;
    }



    .service-grid {
        grid-template-columns: repeat(2,1fr);
    }
}




@media(max-width:700px) {


    .about-page {
        padding-top: 90px;
    }



    .about-hero h1 {
        font-size: 36px;
    }



    .stats-grid,
    .service-grid {
        grid-template-columns: 1fr;
    }



    .car-card {
        width: 240px;
        height: 240px;
    }
}
/* =====================================================
   MODERN BOTTOM SECTION
===================================================== */


.about-bottom {
    padding: 80px 0;
}



.bottom-modern {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 60px;
    padding: 55px;
    border-radius: 35px;
    background: linear-gradient( 135deg, rgba(0,220,255,.12), rgba(255,255,255,.03) );
    border: 1px solid rgba(0,220,255,.25);
    box-shadow: 0 30px 80px rgba(0,0,0,.35);
}



.bottom-badge {
    color: #00dcff;
    font-size: 13px;
    letter-spacing: 2px;
}



.bottom-content h2 {
    font-size: 42px;
    line-height: 1.2;
    margin: 20px 0;
}



    .bottom-content h2 span {
        color: #00dcff;
    }



.bottom-content p {
    color: #b8c9dc;
    font-size: 17px;
    line-height: 1.8;
    max-width: 600px;
}



.bottom-content ul {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}



.bottom-content li {
    margin-bottom: 15px;
    color: #d7e5f5;
    font-size: 16px;
}



    .bottom-content li::before {
        content: "✓";
        color: #00dcff;
        margin-right: 12px;
    }





.bottom-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
}




.mini-stat {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    border-radius: 22px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.12);
    transition: .35s;
}



    .mini-stat:hover {
        transform: translateX(-8px);
        border-color: #00dcff;
        box-shadow: 0 20px 50px rgba(0,220,255,.18);
    }



    .mini-stat i {
        font-size: 38px;
        color: #00dcff;
    }



    .mini-stat strong {
        font-size: 32px;
        color: white;
    }



    .mini-stat span {
        color: #aebfd2;
    }




@media(max-width:900px) {

    .bottom-modern {
        grid-template-columns: 1fr;
        padding: 30px;
    }
}