/* ============================================
   ARTEX GRUP — Landing Pages CSS
   Promosyon | Organizasyon | Danışmanlık
   ============================================ */

:root {
    --landing-primary: #01377B; /* default Blue */
    --landing-primary-rgb: 1, 55, 123;
    --landing-secondary: #E31E26; /* default Red */
    --landing-secondary-dark: #B91C22;
}

/* --- HERO SECTION --- */
.landing-hero {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.landing-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(var(--landing-primary-rgb), 0.92) 0%, rgba(var(--landing-primary-rgb), 0.75) 60%, rgba(var(--landing-primary-rgb), 0.6) 100%);
    z-index: 1;
}

.landing-hero .container {
    position: relative;
    z-index: 2;
}

.landing-hero__content {
    max-width: 680px;
    padding: 80px 0;
}

.landing-hero__badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    padding: 6px 20px;
    border-radius: 4px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.landing-hero__title {
    color: #fff;
    font-family: 'Rajdhani', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
}

.landing-hero__title span {
    color: #F2C94C;
}

.landing-hero__desc {
    color: rgba(255, 255, 255, 0.85);
    font-family: 'Rubik', sans-serif;
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 30px;
    max-width: 540px;
}

.landing-hero__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* Theme-matching flat button style */
.landing-hero__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 34px;
    border-radius: 5px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 18px;
    text-transform: uppercase;
    transition: all 0.5s ease;
    text-decoration: none;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.landing-hero__btn::before {
    transition: 0.5s all ease;
    position: absolute;
    top: 0;
    left: 50%;
    right: 50%;
    bottom: 0;
    opacity: 0;
    content: "";
    z-index: -1;
    border-radius: 5px;
}

.landing-hero__btn:hover::before {
    transition: 0.5s all ease;
    left: 0;
    right: 0;
    opacity: 1;
}

.landing-hero__btn--primary {
    background: var(--landing-secondary-dark);
    color: #fff;
    border: 1px solid var(--landing-secondary-dark);
}

.landing-hero__btn--primary::before {
    background-color: var(--landing-secondary);
}

.landing-hero__btn--primary:hover {
    color: #fff;
    border-color: var(--landing-secondary);
}

.landing-hero__btn--outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.landing-hero__btn--outline::before {
    background-color: #fff;
}

.landing-hero__btn--outline:hover {
    color: var(--landing-primary);
    border-color: #fff;
}

/* Floating shapes — subtle */
.landing-hero__shape {
    position: absolute;
    z-index: 1;
    opacity: 0.06;
}

.landing-hero__shape--1 {
    top: 10%;
    right: 5%;
    width: 250px;
    height: 250px;
    border: 2px solid #fff;
    border-radius: 50%;
    animation: floatUp 8s ease-in-out infinite;
}

.landing-hero__shape--2 {
    bottom: 15%;
    right: 18%;
    width: 120px;
    height: 120px;
    border: 2px solid #fff;
    border-radius: 50%;
    animation: floatUp 6s ease-in-out infinite 1s;
}

.landing-hero__shape--3 {
    top: 35%;
    right: 28%;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    animation: floatUp 10s ease-in-out infinite 2s;
}

@keyframes floatUp {

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

    50% {
        transform: translateY(-15px);
    }
}


/* --- INTRO SECTION --- */
.landing-intro {
    padding: 130px 0 80px;
}

.landing-intro__icon-box {
    width: 70px;
    height: 70px;
    background: var(--landing-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    transition: transform 0.3s ease;
}

.landing-intro__icon-box:hover {
    transform: scale(1.05);
}

.landing-intro__icon-box i {
    color: #fff;
    font-size: 32px;
}

.landing-intro__subtitle {
    color: #222;
    font-family: 'Rajdhani', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 36px;
    margin-bottom: 5px;
    position: relative;
    display: inline-block;
    z-index: 1;
}

/* Red circle dot — matches .section-title span::before */
.landing-intro__subtitle::before {
    position: absolute;
    content: '';
    width: 30px;
    height: 30px;
    background: var(--landing-secondary);
    top: -3px;
    right: -2px;
    border-radius: 50%;
    z-index: -1;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.25);
}

.landing-intro__title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 40px;
    font-weight: 600;
    color: #222;
    margin-bottom: 15px;
    margin-top: 15px;
    line-height: 52px;
}

.landing-intro__text {
    color: #555;
    font-family: 'Rubik', sans-serif;
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 15px;
}

.landing-intro__features {
    list-style: none;
    padding: 0;
    margin: 20px 0 30px;
}

.landing-intro__features li {
    padding: 8px 0;
    font-family: 'Rubik', sans-serif;
    font-size: 16px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 12px;
    line-height: 1.9;
}

.landing-intro__features li i {
    width: 26px;
    height: 26px;
    background: rgba(var(--landing-primary-rgb), 0.1);
    color: var(--landing-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    flex-shrink: 0;
}

.landing-intro__img-wrap {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.landing-intro__img-wrap img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    transition: transform 0.5s ease;
}

.landing-intro__img-wrap:hover img {
    transform: scale(1.03);
}

.landing-intro__img-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--landing-primary);
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 15px;
}


/* --- SERVICE CARDS --- */
.landing-services {
    padding: 130px 0;
    background: #f8f9fc;
}

.landing-services__header {
    text-align: center;
    margin-bottom: 60px;
}

.landing-services__label {
    font-size: 18px;
    font-weight: 600;
    line-height: 36px;
    color: #222;
    position: relative;
    display: inline-block;
    z-index: 1;
}

/* Red circle dot — matches .section-title span::before */
.landing-services__label::before {
    position: absolute;
    content: '';
    width: 30px;
    height: 30px;
    background: var(--landing-secondary);
    top: -3px;
    right: -2px;
    border-radius: 50%;
    z-index: -1;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.25);
}

.landing-services__heading {
    font-family: 'Rajdhani', sans-serif;
    font-size: 40px;
    font-weight: 600;
    color: #222;
    line-height: 52px;
    margin-top: 15px;
}

.landing-card {
    background: #fff;
    border-radius: 8px;
    padding: 35px 25px;
    text-align: center;
    border: 1px dotted var(--landing-secondary);
    transition: all 0.5s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.landing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-style: solid;
}

.landing-card__icon {
    width: 65px;
    height: 65px;
    background: rgba(var(--landing-primary-rgb), 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.landing-card:hover .landing-card__icon {
    background: var(--landing-primary);
}

.landing-card__icon i {
    font-size: 28px;
    color: var(--landing-primary);
    transition: color 0.3s ease;
}

.landing-card:hover .landing-card__icon i {
    color: #fff;
}

.landing-card__title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #222;
    margin-bottom: 10px;
}

.landing-card__text {
    font-family: 'Rubik', sans-serif;
    font-size: 16px;
    color: #555;
    line-height: 1.9;
    margin-bottom: 0;
}


/* --- STATS / NEDEN BIZ --- */
.landing-stats {
    padding: 80px 0;
    background: var(--landing-primary);
    position: relative;
}

.landing-stats__item {
    text-align: center;
    padding: 30px 15px;
}

.landing-stats__number {
    font-family: 'Rajdhani', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #F2C94C;
    line-height: 1;
    margin-bottom: 8px;
}

.landing-stats__label {
    font-family: 'Rubik', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.9;
}


/* --- PROCESS SECTION --- */
.landing-process {
    padding: 130px 0;
}

.landing-process__header {
    text-align: center;
    margin-bottom: 60px;
}

.landing-process__step {
    text-align: center;
    padding: 20px;
    position: relative;
}

.landing-process__step-num {
    width: 52px;
    height: 52px;
    background: var(--landing-primary);
    color: #fff;
    font-family: 'Rajdhani', sans-serif;
    font-size: 22px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    position: relative;
    z-index: 2;
}

.landing-process__step-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #222;
    margin-bottom: 8px;
}

.landing-process__step-text {
    font-family: 'Rubik', sans-serif;
    font-size: 16px;
    color: #555;
    line-height: 1.9;
}

/* connector line between steps */
.landing-process__step::after {
    content: '';
    position: absolute;
    top: 46px;
    right: -50%;
    width: 100%;
    height: 1px;
    background: var(--landing-secondary);
    border-style: dotted;
    border-width: 1px 0 0 0;
    border-color: var(--landing-secondary);
    z-index: 1;
}

.landing-process__step:last-child::after {
    display: none;
}


/* --- CTA SECTION --- */
.landing-cta {
    padding: 80px 0;
    background: var(--landing-primary);
    text-align: center;
}

.landing-cta .container {
    position: relative;
}

.landing-cta__title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 40px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
    line-height: 52px;
}

.landing-cta__text {
    font-family: 'Rubik', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.9;
}

.landing-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 38px;
    border: 1px solid #fff;
    color: #222;
    background: #fff;
    border-radius: 5px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.5s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.landing-cta__btn::before {
    transition: 0.5s all ease;
    position: absolute;
    top: 0;
    left: 50%;
    right: 50%;
    bottom: 0;
    opacity: 0;
    content: "";
    background-color: var(--landing-secondary);
    z-index: -1;
    border-radius: 5px;
}

.landing-cta__btn:hover::before {
    transition: 0.5s all ease;
    left: 0;
    right: 0;
    opacity: 1;
}

.landing-cta__btn:hover {
    color: #fff;
    border-color: var(--landing-secondary);
}

.landing-cta__btn--whatsapp {
    background: #25D366;
    border-color: #25D366;
    color: #fff;
}

.landing-cta__btn--whatsapp::before {
    background-color: #1da851;
}

.landing-cta__btn--whatsapp:hover {
    color: #fff;
    border-color: #1da851;
}


/* --- RESPONSIVE --- */
@media (max-width: 991px) {
    .landing-hero {
        min-height: 400px;
    }

    .landing-hero__title {
        font-size: 38px;
    }

    .landing-hero__content {
        padding: 60px 0;
    }

    .landing-intro {
        padding: 80px 0 60px;
    }

    .landing-intro__title,
    .landing-services__heading {
        font-size: 34px;
        line-height: 44px;
    }

    .landing-stats__number {
        font-size: 38px;
    }

    .landing-cta__title {
        font-size: 34px;
        line-height: 44px;
    }

    .landing-services {
        padding: 80px 0;
    }

    .landing-process {
        padding: 80px 0;
    }
}

@media (max-width: 767px) {
    .landing-hero {
        min-height: 350px;
    }

    .landing-hero__title {
        font-size: 32px;
        line-height: 40px;
    }

    .landing-hero__desc {
        font-size: 15px;
    }

    .landing-hero__actions {
        flex-direction: column;
    }

    .landing-hero__btn {
        justify-content: center;
    }

    .landing-intro {
        padding: 60px 0 40px;
    }

    .landing-intro__img-wrap {
        margin-top: 30px;
    }

    .landing-services {
        padding: 60px 0;
    }

    .landing-card {
        margin-bottom: 20px;
    }

    .landing-process__step::after {
        display: none;
    }

    .landing-process {
        padding: 60px 0;
    }

    .landing-stats__item {
        padding: 20px 10px;
    }

    .landing-cta__title {
        font-size: 28px;
        line-height: 36px;
    }

    .landing-cta__text {
        font-size: 15px;
    }

    .landing-cta__actions {
        flex-direction: column;
        align-items: center;
    }
}

/* --- UTILITIES --- */
.landing-cta__actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.spt-0 {
    padding-top: 0 !important;
}