/* Garaj 44 — Anasayfa */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

.home-page {
    --g44-red: #e31e24;
    --g44-dark: #0a0a0a;
    --g44-gray: #141414;
    --g44-muted: #8a8a8a;
    --g44-line: rgba(255, 255, 255, 0.08);
    --g44-light: #f5f5f5;
    font-family: 'Outfit', sans-serif;
    color: #111;
    overflow-x: hidden;
    background: #fff;
}

.home-page * {
    box-sizing: border-box;
}

@keyframes homeFadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes homeKenBurns {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.08);
    }
}

@keyframes homeLineIn {
    from {
        width: 0;
    }
    to {
        width: 64px;
    }
}

/* —— Hero —— */
.home-hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    margin-top: -80px;
    display: flex;
    align-items: flex-end;
    color: #fff;
    overflow: hidden;
    background: #0a0a0a;
}

.home-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-color: #121212;
    background-image: var(--home-hero-img);
    background-size: cover;
    background-position: center 40%;
    background-repeat: no-repeat;
    transform: scale(1.04);
    animation: homeKenBurns 22s ease-out forwards;
    will-change: transform;
}

.home-hero__veil {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(8, 8, 8, 0.25) 0%, rgba(8, 8, 8, 0.45) 40%, rgba(8, 8, 8, 0.88) 100%),
        linear-gradient(90deg, rgba(8, 8, 8, 0.72) 0%, rgba(8, 8, 8, 0.35) 42%, rgba(8, 8, 8, 0.15) 70%),
        radial-gradient(ellipse 70% 60% at 75% 35%, rgba(227, 30, 36, 0.12), transparent 60%);
    pointer-events: none;
}

.home-hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 0 10vh;
}

.home-hero__brand {
    display: block;
    font-size: clamp(3.2rem, 9vw, 7.5rem);
    font-weight: 900;
    line-height: 0.92;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    margin: 0 0 18px;
    animation: homeFadeUp 0.9s ease both;
}

.home-hero__brand span {
    color: var(--g44-red);
}

.home-hero__rule {
    display: block;
    height: 3px;
    width: 64px;
    background: var(--g44-red);
    margin-bottom: 22px;
    animation: homeLineIn 0.8s 0.35s ease both;
}

.home-hero__lead {
    max-width: 34rem;
    font-size: clamp(1.05rem, 2.2vw, 1.3rem);
    font-weight: 300;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.88);
    margin: 0 0 36px;
    animation: homeFadeUp 0.9s 0.2s ease both;
}

.home-hero__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    animation: homeFadeUp 0.9s 0.35s ease both;
}

.home-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 28px;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.home-btn:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

.home-btn--red {
    background: var(--g44-red);
    color: #fff;
}

.home-btn--red:hover {
    background: #c4181e;
    color: #fff;
}

.home-btn--ghost {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.home-btn--ghost:hover {
    border-color: #fff;
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}

.home-hero__scroll {
    position: absolute;
    right: 8%;
    bottom: 8vh;
    z-index: 2;
    writing-mode: vertical-rl;
    font-size: 0.72rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    animation: homeFadeUp 1s 0.6s ease both;
}

/* —— Section shell —— */
.home-section {
    padding: 100px 0;
}

.home-section--dark {
    background: var(--g44-dark);
    color: #fff;
}

.home-section--soft {
    background: #f7f7f7;
}

.home-section__head {
    max-width: 40rem;
    margin-bottom: 56px;
}

.home-section__head--center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.home-kicker {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--g44-red);
    margin-bottom: 14px;
}

.home-section__head h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin: 0 0 14px;
    color: inherit;
}

.home-section__head p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--g44-muted);
}

.home-section--dark .home-section__head p {
    color: rgba(255, 255, 255, 0.55);
}

/* —— Services —— */
.home-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.home-service {
    display: flex;
    flex-direction: column;
    color: inherit;
    text-decoration: none;
}

.home-service:hover {
    color: inherit;
    text-decoration: none;
}

.home-service__media {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #111;
}

.home-service__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.home-service:hover .home-service__media img {
    transform: scale(1.06);
}

.home-service__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.55) 100%);
    opacity: 0.85;
    pointer-events: none;
}

.home-service__body {
    padding: 24px 4px 0;
}

.home-service__body h3 {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0 0 10px;
    color: #111;
}

.home-service__body p {
    margin: 0 0 16px;
    font-size: 0.95rem;
    line-height: 1.65;
    color: #666;
}

.home-service__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--g44-red);
    transition: gap 0.25s ease;
}

.home-service:hover .home-service__link {
    gap: 14px;
}

/* —— CTA band —— */
.home-cta {
    position: relative;
    padding: 90px 0;
    background: var(--g44-gray);
    color: #fff;
    overflow: hidden;
}

.home-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 90% 50%, rgba(227, 30, 36, 0.22), transparent 70%);
    pointer-events: none;
}

.home-cta__inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.home-cta__inner h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin: 0 0 10px;
    max-width: 18ch;
}

.home-cta__inner p {
    margin: 0;
    color: rgba(255, 255, 255, 0.55);
    font-size: 1.05rem;
    max-width: 36ch;
}

.home-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* —— Reviews —— */
.home-reviews {
    display: grid;
    grid-template-columns: minmax(240px, 280px) 1fr;
    gap: 36px;
    align-items: start;
}

.home-reviews__summary {
    padding-top: 8px;
}

.home-reviews__summary h3 {
    font-size: 1.35rem;
    font-weight: 800;
    margin: 0 0 14px;
}

.home-reviews__score {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 8px;
}

.home-reviews__score strong {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1;
    color: var(--g44-red);
}

.home-reviews__stars {
    color: #e8a317;
    font-size: 1.1rem;
    display: flex;
    gap: 2px;
}

.home-reviews__meta {
    font-size: 0.9rem;
    color: var(--g44-muted);
    margin: 0 0 24px;
}

.home-reviews__track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
    scrollbar-width: none;
}

.home-reviews__track::-webkit-scrollbar {
    display: none;
}

.home-review {
    flex: 0 0 min(320px, 82vw);
    scroll-snap-align: start;
    padding: 28px 0 0;
    border-top: 2px solid #111;
}

.home-review__top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.home-review__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
}

.home-review__top h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
}

.home-review__top span {
    display: block;
    font-size: 0.8rem;
    color: var(--g44-muted);
}

.home-review__stars {
    color: #e8a317;
    font-size: 0.95rem;
    display: flex;
    gap: 2px;
    margin-bottom: 12px;
}

.home-review p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.65;
    color: #444;
}

/* —— FAQ —— */
.home-faq-list {
    max-width: 760px;
    margin: 0 auto;
}

.home-faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.home-faq-item .accordion-button {
    background: transparent;
    color: #fff;
    font-family: inherit;
    font-size: 1.05rem;
    font-weight: 600;
    padding: 22px 0;
    box-shadow: none !important;
}

.home-faq-item .accordion-button::after {
    filter: invert(1);
}

.home-faq-item .accordion-button:not(.collapsed) {
    background: transparent;
    color: #fff;
}

.home-faq-item .accordion-button:hover {
    color: #fff;
}

.home-faq-item .accordion-body {
    padding: 0 0 24px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    font-size: 0.98rem;
}

.home-faq-item .accordion-collapse {
    border: 0;
}

.home-faq-item.accordion-item {
    background: transparent;
    border: 0;
    border-radius: 0 !important;
}

/* —— Brands —— */
.home-brands-track {
    display: flex;
    align-items: center;
    gap: 48px;
    overflow-x: auto;
    padding: 12px 0;
    scrollbar-width: none;
}

.home-brands-track::-webkit-scrollbar {
    display: none;
}

.home-brand {
    flex: 0 0 auto;
    width: 150px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.55;
    transition: opacity 0.3s ease, transform 0.3s ease;
    filter: grayscale(1);
}

.home-brand:hover {
    opacity: 1;
    filter: none;
    transform: translateY(-3px);
}

.home-brand img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.home-brand span {
    font-weight: 700;
    color: #888;
    font-size: 0.95rem;
}

/* —— Reveal on scroll —— */
.home-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* —— Responsive —— */
@media (max-width: 991px) {
    .home-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }

    .home-reviews {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .home-hero__scroll {
        display: none;
    }

    .home-section {
        padding: 72px 0;
    }
}

@media (max-width: 575px) {
    .home-hero {
        min-height: 92svh;
        align-items: flex-end;
    }

    .home-hero__content {
        padding-bottom: 12vh;
    }

    .home-hero__ctas {
        flex-direction: column;
        align-items: stretch;
    }

    .home-btn {
        width: 100%;
    }

    .home-services-grid {
        grid-template-columns: 1fr;
    }

    .home-cta {
        padding: 64px 0;
    }

    .home-cta__inner {
        flex-direction: column;
        align-items: flex-start;
    }
}
