/* =============================================
   PLATO NAKLİYAT – Below-Fold Styles
   (Critical CSS is inlined in HTML <head>)
============================================= */

/* --- Section spacing & headers --- */
.sec {
    padding: 6rem 0
}

.sec__head {
    text-align: center;
    margin-bottom: 3.5rem
}

.sec__tag {
    display: inline-block;
    padding: .35rem 1rem;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent-hover);
    background: var(--accent-soft);
    border-radius: 50px;
    margin-bottom: 1rem
}

.sec__title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text);
    line-height: 1.15
}

.sec__title--left {
    text-align: left
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

address {
    font-style: normal
}

/* --- Buttons (hover/lg extensions) --- */
.btn--primary:hover {
    background: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, .3)
}

.btn--outline:hover {
    border-color: var(--text);
    transform: translateY(-3px)
}

.btn--lg {
    padding: 1.1rem 2.5rem;
    font-size: 1.15rem;
    border-radius: var(--radius)
}

/* --- Header interaction states --- */
.hdr__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
    transition: width .3s var(--ease)
}

.hdr__link:hover::after {
    width: 100%
}

.hdr__link:hover {
    color: var(--text)
}

.hdr__cta:hover {
    background: var(--accent-hover);
    transform: scale(1.04)
}

/* --- Services --- */
.services {
    background: var(--bg)
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem
}

.svc {
    position: relative;
    padding: 2rem 1.5rem 2.5rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all .35s var(--ease);
    overflow: hidden;
    cursor: default
}

.svc::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--border), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s var(--ease)
}

.svc:hover::before {
    transform: scaleX(1)
}

.svc:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, .06);
    border-color: transparent
}

.svc__icon-wrap {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-alt);
    border-radius: 14px;
    margin-bottom: 1.5rem;
    transition: background .3s var(--ease)
}

.svc:hover .svc__icon-wrap {
    background: var(--accent-soft)
}

.svc__icon {
    width: 28px;
    height: 28px;
    stroke: var(--text-mid);
    transition: stroke .3s var(--ease)
}

.svc:hover .svc__icon {
    stroke: var(--accent-hover)
}

.svc h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: .6rem
}

.svc p {
    font-size: .92rem;
    color: var(--text-mid);
    line-height: 1.6
}

.svc__arrow {
    position: absolute;
    bottom: 1.2rem;
    right: 1.5rem;
    font-size: 1.3rem;
    color: var(--accent);
    opacity: 0;
    transform: translateX(-8px);
    transition: all .3s var(--ease)
}

.svc:hover .svc__arrow {
    opacity: 1;
    transform: translateX(0)
}

/* --- Why Us --- */
.why {
    background: var(--bg-alt)
}

.why__layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start
}

.why__left {
    position: sticky;
    top: 7rem
}

.why__desc {
    color: var(--text-mid);
    margin-top: 1.5rem;
    font-size: 1.05rem
}

.why__right {
    display: flex;
    flex-direction: column;
    gap: 1.2rem
}

.why__card {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.8rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all .35s var(--ease)
}

.why__card:hover {
    border-color: #D1D5DB;
    box-shadow: 0 10px 30px -8px rgba(0, 0, 0, .05);
    transform: translateX(6px)
}

.why__card-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--border);
    line-height: 1;
    min-width: 3rem;
    transition: color .3s var(--ease)
}

.why__card:hover .why__card-num {
    color: var(--accent)
}

.why__card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: .35rem
}

.why__card p {
    font-size: .9rem;
    color: var(--text-mid);
    line-height: 1.55
}

/* --- GEO Areas --- */
.geo {
    background: var(--bg)
}

.geo__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem
}

.geo__item {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: 1rem 1.4rem;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-weight: 500;
    color: var(--text);
    transition: all .3s var(--ease);
    font-size: .95rem
}

.geo__item:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px -6px rgba(245, 158, 11, .2)
}

.geo__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
    transition: background .3s var(--ease)
}

.geo__item:hover .geo__dot {
    background: #fff
}

/* --- CTA --- */
.cta {
    background: var(--bg-alt);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border)
}

.cta::before {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    background: var(--accent-soft);
    border-radius: 50%;
    top: -120px;
    right: -80px;
    opacity: .6
}

.cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap
}

.cta__text h2 {
    font-size: clamp(1.6rem, 3vw, 2.5rem);
    color: var(--text);
    font-weight: 800;
    margin-bottom: .5rem
}

.cta__text p {
    color: var(--text-mid);
    font-size: 1.05rem
}

/* --- Footer --- */
.ftr {
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
    padding: 4rem 0 0
}

.ftr__grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1.4fr;
    gap: 3rem;
    margin-bottom: 3rem
}

.ftr__brand p {
    color: var(--text-mid);
    margin-top: 1rem;
    font-size: .92rem;
    line-height: 1.6
}

.ftr__brand .hdr__logo {
    color: var(--text);
    font-size: 1.2rem
}

.ftr__social {
    display: flex;
    gap: .8rem;
    margin-top: 1.5rem
}

.ftr__social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg);
    border: 1px solid var(--border);
    color: var(--text-mid);
    transition: all .3s var(--ease)
}

.ftr__social a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    transform: translateY(-3px)
}

.ftr__col h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1.2rem
}

.ftr__col ul {
    display: flex;
    flex-direction: column;
    gap: .7rem
}

.ftr__col a {
    color: var(--text-mid);
    font-size: .92rem;
    transition: color .2s
}

.ftr__col a:hover {
    color: var(--accent)
}

.ftr__col address p {
    color: var(--text-mid);
    font-size: .9rem;
    margin-bottom: .6rem
}

.ftr__bottom {
    border-top: 1px solid var(--border);
    padding: 1.5rem 0;
    text-align: center;
    font-size: .85rem;
    color: var(--text-light)
}

/* --- FAB (Sticky Bottom Bar — Mobile Only) --- */
.fab {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 90;
    display: none;
    flex-direction: row;
    gap: 0;
    opacity: 0;
    transform: translateY(100%);
    transition: all .4s var(--ease);
    pointer-events: none
}

@media(max-width:768px) {
    .fab {
        display: flex
    }
}

.fab.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto
}

.fab__btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    padding: 1rem;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: .3px;
    transition: filter .3s var(--ease);
    border: none;
    text-decoration: none
}

.fab__btn:hover {
    filter: brightness(1.1)
}

.fab__btn--call {
    background: var(--accent)
}

.fab__btn--wa {
    background: #25D366
}

/* --- Scroll Reveal --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s var(--ease), transform .7s var(--ease)
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0)
}

/* --- Responsive (below-fold sections) --- */
@media(max-width:992px) {
    .why__layout {
        grid-template-columns: 1fr;
        gap: 2.5rem
    }

    .why__left {
        position: static
    }

    .ftr__grid {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:768px) {
    .sec {
        padding: 4rem 0
    }

    .services__grid {
        grid-template-columns: 1fr
    }

    .why__card {
        padding: 1.4rem
    }

    .geo__grid {
        grid-template-columns: 1fr
    }

    .cta__inner {
        flex-direction: column;
        text-align: center
    }

    .ftr__grid {
        grid-template-columns: 1fr
    }
}

@media print {

    .hdr,
    .fab,
    .hero__shapes,
    .hero__wave {
        display: none
    }

    .hero {
        min-height: auto;
        padding: 2rem 0
    }
}