/* assets/css/home.css - Homepage Specific */

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(11,43,94,0.85) 0%, rgba(11,43,94,0.3) 100%);
    z-index: -1;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 6rem;
    align-items: center;
}

.hero-content h1 {
    color: white;
    margin-bottom: 2rem;
}

.hero-content p {
    color: rgba(255,255,255,0.8);
    font-size: 1.25rem;
    margin-bottom: 3rem;
    max-width: 600px;
}

/* ============================================================
   GLASS FORM
   ============================================================ */
.glass-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: 3.5rem;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.glass-form h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.glass-form p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 2.5rem;
}

/* ============================================================
   LOGO MARQUEE
   ============================================================ */
.logo-marquee-section {
    position: relative;
    padding: 36px 0;
    background: #fff;
    overflow: hidden;
    border-top: 1px solid rgba(15,23,42,.06);
    border-bottom: 1px solid rgba(15,23,42,.06);
}

.logo-marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    min-height: 120px;
}

.logo-track {
    display: flex;
    align-items: center;
    gap: 90px;
    width: max-content;
    flex-wrap: nowrap;
    animation: logoMarquee 35s linear infinite;
}

.logo-marquee:hover .logo-track {
    animation-play-state: paused;
}

.logo-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-item img {
    height: 54px;
    width: auto;
    max-width: 170px;
    object-fit: contain;
    opacity: .55;
    filter: grayscale(100%);
    transition: .35s ease;
}

.logo-item:hover img {
    opacity: 1;
    filter: grayscale(0);
    transform: scale(1.05);
}

@keyframes logoMarquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-30%); }
}

/* ============================================================
   VIDEO CAROUSEL
   ============================================================ */
.premium-video-section {
    padding: 100px 0;
    background: var(--color-bg-pure);
}

.premium-video-carousel-wrap {
    position: relative;
    max-width: 1180px;
    margin: 0 auto;
    padding: 20px 70px;
}

.premium-video-grid {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 26px;
    overflow: hidden;
    scroll-behavior: smooth;
}

.premium-video-card {
    position: relative;
    flex: 0 0 calc((100% - 52px) / 3);
    height: 500px;
    border-radius: 34px;
    overflow: hidden;
    background: #0f172a;
    opacity: .52;
    transform: scale(.86);
    filter: saturate(.7) brightness(.78);
    transition: all .45s cubic-bezier(.22,1,.36,1);
    box-shadow: 0 24px 70px rgba(15,23,42,.18);
}

.premium-video-card.is-active {
    opacity: 1;
    transform: scale(1);
    filter: saturate(1.05) brightness(1);
    z-index: 5;
    box-shadow: 0 45px 120px rgba(15,23,42,.34);
}

.premium-video-card video,
.premium-video-card img,
.video-link-card {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-embed {
    width: 100%;
    height: 100%;
}

.video-embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.premium-video-info {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 28px;
    color: #fff;
    background: linear-gradient(to top, rgba(0,0,0,.94), rgba(0,0,0,.4) 60%, transparent);
    z-index: 3;
}

.premium-video-info h3 {
    color: #fff;
    font-size: 1.2rem;
    line-height: 1.3;
    margin-bottom: 8px;
}

.premium-video-info p {
    color: #fff;
    opacity: .78;
    font-size: .92rem;
}

.video-link-card {
    position: relative;
}

.video-link-card span {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 5rem;
    background: radial-gradient(circle, rgba(0,0,0,.12), rgba(0,0,0,.45));
    backdrop-filter: blur(3px);
    transition: .35s ease;
}

.premium-video-card:hover .video-link-card span {
    transform: scale(1.08);
}

.video-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(15,23,42,.12);
    background: #fff;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 20;
    box-shadow: 0 20px 50px rgba(15,23,42,.18);
    transition: .3s ease;
}

.video-carousel-btn:hover {
    transform: translateY(-50%) scale(1.08);
    background: var(--color-primary);
    color: #fff;
}

.video-prev { left: 0; }
.video-next { right: 0; }

/* ============================================================
   GALLERY
   ============================================================ */
.premium-gallery-section {
    padding: 100px 0;
    background: var(--color-bg-soft);
}

.premium-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.premium-gallery-card {
    position: relative;
    height: 420px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(15,23,42,.14);
}

.premium-gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .45s ease;
}

.premium-gallery-card:hover img {
    transform: scale(1.08);
}

.premium-gallery-overlay {
    position: absolute;
    inset: auto 0 0;
    padding: 24px;
    color: #fff;
    background: linear-gradient(to top, rgba(0,0,0,.88), transparent);
}

.premium-gallery-overlay h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 6px;
}

.premium-gallery-overlay p {
    color: rgba(255,255,255,.8);
}

.before-after-badge {
    display: inline-block;
    margin-bottom: 10px;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--color-accent);
    color: #fff;
    font-size: .8rem;
    font-weight: 700;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.service-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 3.5rem 2.5rem;
    border: 1px solid rgba(0,0,0,0.03);
    box-shadow: var(--glass-shadow);
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--color-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(11,43,94,0.1);
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-md);
    background: var(--color-bg-soft);
    color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.service-card h3 {
    font-size: 1.6rem;
}

.service-card p {
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
    display: block;
    visibility: visible;
    opacity: 1;
    padding: 90px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.testimonials-section .section-header,
.testimonials-section .section-header h2,
.testimonials-section .section-header p,
.testimonials-section .section-subtitle {
    visibility: visible;
    opacity: 1;
    transform: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.testimonial-card {
    display: block;
    visibility: visible;
    opacity: 1;
    transform: none;
    background: #fff;
    border: 1px solid rgba(15,23,42,.08);
    border-radius: 28px;
    padding: 30px;
    box-shadow: 0 20px 55px rgba(11,43,94,.08);
    transition: .4s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.testimonial-service {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 100px;
    background: rgba(0,0,0,0.05);
    font-size: .85rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.stars {
    color: #fbbf24;
    font-size: 1.2rem;
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.testimonial-comment {
    font-size: 1rem;
    line-height: 1.9;
    color: #334155;
    margin-bottom: 30px;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0f172a, #334155);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.testimonial-user h4 {
    margin: 0;
    font-size: 1rem;
    color: #0f172a;
}

.testimonial-user span {
    font-size: .9rem;
    color: #64748b;
}

/* ============================================================
   STATS
   ============================================================ */
.image-stats-section {
    position: relative;
    padding: var(--spacing-xl) 0;
    color: white;
    overflow: hidden;
}

.image-stats-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.image-stats-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-stats-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11,43,94,0.85);
    z-index: -1;
}

.image-stats-section .subtitle,
.image-stats-section h2,
.image-stats-section p {
    color: #fff;
    opacity: 1;
    visibility: visible;
}

.image-stats-section h2 {
    text-shadow: 0 8px 24px rgba(0,0,0,.25);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 5rem;
}

.stat-box {
    text-align: center;
    padding: 2rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 300;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 1rem;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(255,255,255,0.7);
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(14px);
    border-radius: 24px;
    overflow: hidden;
    transition: all .35s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    border-color: rgba(255,255,255,0.25);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 1.75rem;
    cursor: pointer;
    color: var(--color-primary);
    font-size: 1.05rem;
    font-weight: 700;
    text-align: left;
}

.faq-question i {
    font-size: 1.4rem;
    transition: transform .3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
}

.faq-answer p {
    padding: 0 1.75rem 1.75rem;
    color: var(--color-text-muted);
    line-height: 1.9;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

section.section:has(.faq-accordion) {
    padding-bottom: 60px;
}

section.section:has(.faq-accordion) + section.section {
    padding-top: 60px;
    padding-bottom: 80px;
}

/* ============================================================
   SERVICE AREAS
   ============================================================ */
.service-areas {
    margin-top: 34px;
    padding: 30px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid rgba(15,23,42,.08);
    box-shadow: 0 18px 45px rgba(11,43,94,.07);
}

.service-areas h3 {
    color: var(--color-primary);
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.service-areas p {
    color: var(--color-text-muted);
    line-height: 1.85;
    margin: 0;
}

.service-area-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 24px;
}

.service-area-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 999px;
    background: #F8FAFC;
    border: 1px solid rgba(15,23,42,.08);
    color: var(--color-primary);
    font-weight: 700;
    transition: .3s ease;
}

.service-area-links a:hover {
    background: var(--color-primary);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(11,43,94,.14);
}

/* ============================================================
   GSAP FALLBACK — görünürlük garantisi
   ============================================================ */
.home-page .gsap-reveal,
.testimonials-section .gsap-reveal,
.image-stats-section .gsap-reveal,
.seo-content-block.gsap-reveal,
.section .container.gsap-reveal {
    visibility: visible;
    opacity: 1;
    transform: none;
}

section.section .container.gsap-reveal > div {
    flex-wrap: wrap;
}

/* ============================================================
   RESPONSIVE — 992px
   ============================================================ */
@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .premium-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .premium-gallery-card {
        height: 300px;
    }
}

/* ============================================================
   RESPONSIVE — 768px
   ============================================================ */
@media (max-width: 768px) {

    /* Hero */
    .hero {
        height: auto;
        min-height: 760px;
        padding: 120px 0 60px;
        overflow: hidden;
    }


    .hero-container {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: clamp(2.7rem, 13vw, 4.2rem);
        line-height: 1.05;
        word-break: normal;
    }

    .hero-content p {
        font-size: 1.05rem;
        line-height: 1.7;
        max-width: 100%;
        margin-bottom: 2rem;
    }

    .hero-form-wrapper {
        width: 100%;
        max-width: 100%;
    }

    .glass-form {
        width: 100%;
        max-width: 100%;
        padding: 1.5rem;
        border-radius: 24px;
    }

    /* Video */
    .premium-video-section {
        padding: 70px 0;
    }

    .premium-video-carousel-wrap {
        padding: 0;
        overflow: visible;
    }

    .premium-video-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .premium-video-card {
        width: 100%;
        min-width: 0;
        max-width: none;
        flex: none;
        height: 180px;
        opacity: 1;
        transform: none;
        filter: none;
        border-radius: 18px;
    }

    .premium-video-card.is-active {
        opacity: 1;
        transform: none;
        filter: none;
    }

    .premium-video-card video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .premium-video-info {
        display: none;
    }

    .video-carousel-btn {
        display: none;
    }

    /* Gallery */
    .premium-gallery-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .premium-gallery-card {
        height: 260px;
        border-radius: 22px;
    }

    .premium-gallery-overlay {
        padding: 18px;
    }

    .premium-gallery-overlay h3 {
        font-size: 1.15rem;
    }

    /* Testimonials */
    .testimonials-section {
        padding: 60px 0;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .testimonial-card {
        border-radius: 24px;
        padding: 24px;
    }

    /* Service Areas */
    .service-areas {
        padding: 24px;
        border-radius: 24px;
    }

    .service-area-links {
        gap: 10px;
    }

    .service-area-links a {
        width: 100%;
        justify-content: flex-start;
        padding: 0 18px;
    }

    /* FAQ */
    section.section:has(.faq-accordion) {
        padding-bottom: 40px;
    }

    section.section:has(.faq-accordion) + section.section {
        padding-top: 40px;
        padding-bottom: 60px;
    }
}
/* Ana sayfa hizmetler başlık boşluk düzeltmesi */
.home-page + .local-seo-strip + .logo-marquee-section + .section.section-soft {
    padding-top: 60px !important;
}

.section.section-soft .text-center {
    margin-bottom: 35px !important;
}