/*
 * Landing Page Styles
 * Google Ads sitelink landing pages için özel stiller
 */

/* ========================================
   Landing Hero Section
======================================== */
.landing-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.landing-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.landing-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.75) 0%, rgba(37, 99, 235, 0.65) 100%);
    z-index: -1;
}

.landing-hero-content {
    text-align: center;
    padding: 0 1.5rem;
    max-width: 800px;
    margin-top: 80px;
}

.landing-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.landing-badge-dot {
    width: 10px;
    height: 10px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 8px #10b981;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.2);
    }
}

.landing-title {
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.landing-title .highlight {
    display: block;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.landing-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.landing-cta-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.landing-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.landing-phone i {
    width: 24px;
    height: 24px;
    animation: ring 1.5s ease-in-out infinite;
}

@keyframes ring {

    0%,
    100% {
        transform: rotate(0);
    }

    10%,
    30% {
        transform: rotate(-10deg);
    }

    20%,
    40% {
        transform: rotate(10deg);
    }

    50% {
        transform: rotate(0);
    }
}

.landing-phone a {
    color: inherit;
}

/* ========================================
   Landing Features Section
======================================== */
.landing-features {
    padding: 4rem 0;
    background: #f8fafc;
}

.landing-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.landing-feature {
    text-align: center;
    padding: 2rem 1rem;
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.landing-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(30, 136, 229, 0.15);
}

.landing-feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.landing-feature-icon i,
.landing-feature-icon svg {
    width: 28px;
    height: 28px;
    color: #fff !important;
    stroke: #fff !important;
}

.landing-feature h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #0f172a;
}

.landing-feature p {
    font-size: 0.9rem;
    color: #64748b;
}

/* ========================================
   Landing Services Section
======================================== */
.landing-services {
    padding: 4rem 0;
    background: #fff;
}

.landing-section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2.5rem;
    color: #0f172a;
    position: relative;
}

.landing-section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    border-radius: 50px;
}

.landing-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.landing-service-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: #f8fafc;
    border-radius: 0.75rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.landing-service-item:hover {
    background: #fff;
    border-color: #2563eb;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.15);
    transform: translateX(5px);
}

.landing-service-item i {
    width: 24px;
    height: 24px;
    color: #2563eb;
    stroke: #2563eb;
    flex-shrink: 0;
}

.landing-service-item span {
    font-weight: 600;
    color: #0f172a;
}

/* ========================================
   Landing Areas Section
======================================== */
.landing-areas {
    padding: 3rem 0;
    background: #f8fafc;
}

.landing-areas-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.landing-areas-list span {
    padding: 0.75rem 1.5rem;
    background: #fff;
    border-radius: 50px;
    font-weight: 500;
    color: #475569;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.landing-areas-list span:hover {
    border-color: #2563eb;
    color: #2563eb;
}

/* ========================================
   Landing Contact Info Section
======================================== */
.landing-contact-info {
    padding: 4rem 0;
    background: #fff;
}

.landing-contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.landing-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 1rem;
}

.landing-contact-item>i {
    width: 40px;
    height: 40px;
    padding: 8px;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    border-radius: 50%;
    color: #fff;
    flex-shrink: 0;
}

.landing-contact-item h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 0.25rem;
}

.landing-contact-item a,
.landing-contact-item span {
    font-size: 1rem;
    color: #0f172a;
    font-weight: 600;
}

.landing-contact-item a:hover {
    color: #2563eb;
}

/* ========================================
   Landing CTA Section
======================================== */
.landing-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
}

.landing-cta-box {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.landing-cta-box h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.landing-cta-box p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.landing-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

/* ========================================
   Landing Footer
======================================== */
.landing-back-home {
    padding: 3rem 0;
    background: #f8fafc;
    text-align: center;
}

.landing-back-home .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.landing-back-home .btn i {
    width: 18px;
    height: 18px;
}

.landing-footer {
    padding: 3rem 0 1.5rem;
    background: #0f172a;
    color: #fff;
}

.landing-footer-content {
    text-align: center;
    margin-bottom: 2rem;
}

.landing-footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.landing-footer-brand span {
    font-size: 1.25rem;
    font-weight: 700;
}

.landing-footer-content>p {
    color: #94a3b8;
    margin-bottom: 1.5rem;
}

.landing-footer-contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.landing-footer-contact a,
.landing-footer-contact span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #cbd5e1;
    font-size: 0.9rem;
}

.landing-footer-contact a:hover {
    color: #fff;
}

.landing-footer-contact i {
    width: 16px;
    height: 16px;
}

.landing-footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #1e293b;
}

.landing-footer-bottom p {
    color: #64748b;
    font-size: 0.875rem;
}

/* ========================================
   Responsive Design
======================================== */
@media (max-width: 1024px) {
    .landing-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .landing-contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .landing-title {
        font-size: 2.25rem;
    }

    .landing-description {
        font-size: 1.1rem;
    }

    .landing-phone {
        font-size: 1.25rem;
        padding: 0.75rem 1.5rem;
    }

    .landing-features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .landing-feature {
        padding: 1.5rem 1rem;
    }

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

    /* Landing pages override: always show navbar-cta */
    .landing-hero~.landing-features~.landing-services~.landing-cta~.landing-footer .navbar-cta,
    body:has(.landing-hero) .navbar-cta {
        display: flex !important;
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .landing-contact-grid {
        grid-template-columns: 1fr;
    }

    .landing-cta-box h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .landing-hero-content {
        margin-top: 100px;
    }

    .landing-title {
        font-size: 1.875rem;
    }

    .landing-badge {
        font-size: 0.875rem;
        padding: 10px 18px;
    }

    .landing-cta-group {
        flex-direction: column;
        align-items: stretch;
    }

    .landing-cta-group .btn {
        width: 100%;
        justify-content: center;
    }

    .landing-features-grid {
        grid-template-columns: 1fr;
    }

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

    .landing-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .landing-cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}