/* ==============================
   SITE FOOTER — Minimal
   ============================== */
.sf {
    background: #111;
    color: #888;
    font-size: 14px;
}

.sf__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 64px 40px 48px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 48px;
    border-bottom: 1px solid #222;
}

.sf__logo {
    display: block;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.sf__tagline {
    color: #555;
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
}

.sf__social {
    display: flex;
    gap: 14px;
    margin-top: 14px;
}

.sf__social a {
    color: #555;
    font-size: 26px;
    transition: color .2s;
}

.sf__social a:hover {
    color: #fff;
}

.sf__nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sf__nav ul li a {
    color: #888;
    text-decoration: none;
    transition: color 0.2s;
    font-size: 14px;
}

.sf__nav ul li a:hover {
    color: #fff;
}

.sf__contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sf__contact a,
.sf__contact span {
    color: #888;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.5;
    transition: color 0.2s;
}

.sf__contact a:hover {
    color: #fff;
}

.sf__bar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #3a3a3a;
}

.sf__bar a {
    color: #3a3a3a;
    text-decoration: none;
    transition: color 0.2s;
}

.sf__bar a:hover {
    color: #888;
}

.sf__bar a[href*="lineandframe"] {
    background: linear-gradient(
        90deg,
        #ff6b6b, #ffa94d, #ffe066, #69db7c,
        #4dabf7, #9775fa, #f783ac, #ff6b6b
    );
    background-size: 300% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: rainbow-shift 4s linear infinite;
}

@keyframes rainbow-shift {
    0%   { background-position: 0% center; }
    100% { background-position: 300% center; }
}

@media (max-width: 900px) {
    .sf__inner {
        grid-template-columns: 1fr 1fr;
        padding: 48px 24px 36px;
    }
    .sf__brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 560px) {
    .sf__inner {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 40px 20px 30px;
    }
    .sf__bar {
        flex-direction: column;
        gap: 6px;
        text-align: center;
        padding: 18px 20px;
    }
}


/* ==============================
   HOMEPAGE — ABOUT SECTION
   ============================== */
.home-about__label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
    margin: 0 0 16px;
}

.home-about__lead {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.6;
    color: #1a1a2e;
    margin: 0 0 16px;
}

.home-about__body {
    font-size: 15px;
    line-height: 1.75;
    color: #555;
    margin: 0 0 20px;
}

.home-about__yt-link {
    color: #1a73e8;
    font-size: 14px;
    text-decoration: none;
    word-break: break-all;
}

.home-about__yt-link:hover {
    text-decoration: underline;
}

.home-about__video-wrap {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: #111;
    aspect-ratio: 16/9;
}

.home-about__video-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* ==============================
   HOMEPAGE — SERVICES SECTION
   ============================== */
.home-services__subtitle {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
    margin: 0 0 10px;
}

.home-services__title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    color: #1a1a2e;
    margin: 0;
    line-height: 1.2;
}

.home-services__desc {
    font-size: 15px;
    line-height: 1.75;
    color: #555;
    margin: 0;
}

.home-service-card {
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 16px rgba(0,0,0,.06);
    transition: box-shadow 0.3s, transform 0.3s;
}

.home-service-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,.12);
    transform: translateY(-4px);
}

.home-service-card__img {
    height: 220px;
    border-radius: 8px;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    margin-bottom: 1.5rem;
    transition: transform 0.4s;
}

.home-service-card:hover .home-service-card__img {
    transform: scale(1.03);
}

.home-service-card__body {
    padding: 20px 24px 24px;
}

.home-service-card__title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 12px;
}

.home-service-card__link {
    font-size: 13px;
    font-weight: 600;
    color: #1a73e8;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.2s;
}

.home-service-card__link:hover {
    color: #ff5a1a;
}


/* ==============================
   HOMEPAGE — SPLIT SECTIONS
   ============================== */
.home-split__img-col {
    min-height: 480px;
}

.home-split__img {
    height: 100%;
    min-height: 480px;
    background-size: cover;
    background-position: center;
}

.home-split__content {
    max-width: 100%;
    width: 100%;
}

.p-lg-6 {
    padding: 64px !important;
}

@media (max-width: 991px) {
    .p-lg-6 {
        padding: 40px !important;
    }
    .home-split__img-col {
        min-height: 320px;
    }
    .home-split__img {
        min-height: 320px;
    }
    .home-split__content {
        max-width: 100%;
    }
}

.home-split__title {
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 800;
    color: #1a1a2e;
    margin: 0 0 16px;
    line-height: 1.2;
}

.home-split__lead {
    font-size: 17px;
    font-weight: 700;
    color: #222;
    line-height: 1.6;
    margin: 0 0 14px;
}

.home-split__body {
    font-size: 15px;
    line-height: 1.75;
    color: #555;
    margin: 0;
}


/* ==============================
   HOMEPAGE — FEATURES SECTION
   ============================== */
.home-features__title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: #1a1a2e;
    margin: 0 0 16px;
    line-height: 1.2;
}

.home-features__desc {
    font-size: 15px;
    line-height: 1.75;
    color: #555;
    margin: 0;
}

.home-feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
}

.home-feature-item:last-child {
    border-bottom: none;
}

.home-feature-item__icon {
    width: 48px;
    height: 48px;
    background: #eaf1fc;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 20px;
    color: #1a73e8;
}

.home-feature-item__title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 6px;
}

.home-feature-item__desc {
    font-size: 14px;
    line-height: 1.65;
    color: #666;
    margin: 0;
}


/* ==============================
   HOMEPAGE — CTA SECTION
   ============================== */
.home-cta {
    background: #1d2d50;
    padding: 80px 0;
    text-align: center;
}

.home-cta__title {
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 800;
    color: #fff;
    margin: 0 0 16px;
}

.home-cta__desc {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255,255,255,.75);
    max-width: 620px;
    margin: 0 auto 8px;
}

.home-cta .btn:active,
.home-cta .btn:focus,
.home-cta .btn:focus-visible {
    box-shadow: none !important;
    outline: none !important;
    transform: none !important;
}


/* ==============================
   HOMEPAGE — TECHNOLOGIES (statik satır)
   ============================== */
.home-tech {
    background: #f4f4f4;
    padding: 32px 0;
}

.home-tech__logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.home-tech__logos img {
    display: block;
    height: 95px;
    width: auto;
    max-width: 220px;
    min-width: 40px;
    object-fit: contain;
    flex-shrink: 0;
}

@media (max-width: 575px) {
    .home-tech__logos {
        gap: 24px;
    }
    .home-tech__logos img {
        height: 50px;
        max-width: 120px;
    }
}


/* WhatsApp FAB */
#whatsapp-fab {
    position: fixed;
    bottom: 24px;
    left: 15px;
    z-index: 9999;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(37,211,102,.45);
    transition: box-shadow .25s, transform .25s;
}

#whatsapp-fab:hover {
    box-shadow: 0 6px 24px rgba(37,211,102,.6);
    transform: translateY(-2px);
}


/* ==============================
   İLETİŞİM — Contact Info Cards
   ============================== */
.cic {
    padding: 48px 28px 40px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 4px 28px rgba(0,0,0,.07);
    height: 100%;
    transition: box-shadow .3s, transform .3s;
}

.cic:hover {
    box-shadow: 0 10px 40px rgba(0,0,0,.12);
    transform: translateY(-4px);
}

.cic__icon {
    width: 100px;
    height: 100px;
    background: #111;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    transition: background .3s;
}

.cic:hover .cic__icon {
    background: #333;
}

.cic__icon i {
    font-size: 40px;
    color: #fff;
}

.cic__title {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 10px;
}

.cic__desc {
    font-size: 13px;
    color: #999;
    line-height: 1.65;
    margin: 0 0 14px;
}

.cic__value {
    font-size: 15px;
    color: #222;
    font-weight: 600;
    margin: 0;
    word-break: break-word;
}

.cic__value a {
    color: #222;
    text-decoration: none;
}

.cic__value a:hover {
    text-decoration: underline;
}


/* ==============================
   PORTFOLIO MODAL — Frosted Glass
   ============================== */

/* Backdrop blur */
#portfolyoModal.modal {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.55);
}

/* Override Bootstrap's .modal-backdrop */
#portfolyoModal + .modal-backdrop,
.modal-backdrop {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.5);
}

.portfolyo-modal-content {
    background: rgb(255 255 255 / 0%);
    backdrop-filter: blur(24px) saturate(1.6);
    -webkit-backdrop-filter: blur(24px) saturate(1.6);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.7);
    color: #fff;
    position: relative;
    overflow: visible;
}

#portfolyoModalBody {
    background: #ffffff1c;
    border-radius: 12px;
}

.portfolyo-modal-close {
    position: absolute;
    top: -18px;
    right: -18px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    font-size: 22px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s, transform 0.2s;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.portfolyo-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.portfolyo-modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 28px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.portfolyo-modal-nav:hover {
    background: rgba(255, 255, 255, 0.25);
}

.portfolyo-modal-nav-prev { left: -22px; }
.portfolyo-modal-nav-next { right: -22px; }

.portfolyo-modal-counter {
    position: absolute;
    bottom: -32px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    white-space: nowrap;
}
