
/* =========================================================
   ENGİN ALTAY — HİZMET DETAY SAYFASI
   ========================================================= */


/* =========================================================
   SERVICE PAGE — CONTAINER
   ========================================================= */

.service-page .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
}


/* =========================================================
   SERVICE PAGE
   ========================================================= */

.service-page {
    background: #ffffff;
    color: #172033;
}


/* =========================================================
   1. SERVICE HERO
   ========================================================= */

.service-hero {
    position: relative;
    overflow: hidden;

    padding: 110px 0 100px;

    background:
        radial-gradient(
            circle at 85% 30%,
            rgba(200, 164, 93, 0.14),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #0b1730 0%,
            #101f3d 60%,
            #15294b 100%
        );

    color: #ffffff;
}


/* Dekoratif ışık */

.service-hero::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    right: -180px;
    top: -180px;

    border-radius: 50%;

    background: rgba(200, 164, 93, 0.08);

    filter: blur(10px);

    pointer-events: none;
}


/* Hero container */

.service-hero .container {
    position: relative;
    z-index: 2;
}


/* Hero içerik */

.service-hero-container {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 60px;
}


/* Hero metin */

.service-hero-content {
    max-width: 850px;
}


/* Küçük başlık */

.service-eyebrow {
    display: inline-block;

    margin-bottom: 22px;

    color: #c8a45d;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
}


/* Ana başlık */

.service-hero-content h1 {
    margin: 0;

    max-width: 850px;

    color: #ffffff;

    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.05;
    letter-spacing: -2.5px;
}


/* Altın vurgulu span */

.service-hero-content h1 span {
    display: block;

    color: #c8a45d;
}


/* Açıklama */

.service-hero-content p {
    max-width: 680px;

    margin: 30px 0 0;

    color: #cbd5e1;

    font-size: 17px;
    line-height: 1.8;
}


/* =========================================================
   HERO BUTONLARI
   ========================================================= */

.service-hero-buttons {
    display: flex;
    align-items: center;

    gap: 14px;

    margin-top: 35px;
}


.service-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    min-height: 52px;

    padding: 0 24px;

    border-radius: 8px;

    font-size: 13px;
    font-weight: 800;

    text-decoration: none;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}


.service-button span {
    font-size: 17px;
    line-height: 1;
}


/* Ana buton */

.service-button-primary {
    background: #c8a45d;

    border: 1px solid #c8a45d;

    color: #0b1730;
}


.service-button-primary:hover {
    background: #d5b875;

    border-color: #d5b875;

    color: #0b1730;

    transform: translateY(-2px);
}


/* İkincil buton */

.service-button-secondary {
    background: transparent;

    border: 1px solid rgba(255, 255, 255, 0.25);

    color: #ffffff;
}


.service-button-secondary:hover {
    background: #ffffff;

    border-color: #ffffff;

    color: #0b1730;

    transform: translateY(-2px);
}


/* =========================================================
   HERO NUMARASI
   ========================================================= */

.service-hero-number {
    flex-shrink: 0;

    min-width: 170px;

    padding-left: 30px;

    border-left: 1px solid rgba(255, 255, 255, 0.16);
}


.service-hero-number strong {
    display: block;

    color: #c8a45d;

    font-size: 70px;
    line-height: 0.9;
    font-weight: 800;

    letter-spacing: -4px;
}


.service-hero-number span {
    display: block;

    margin-top: 14px;

    color: #aeb9c9;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
}


/* =========================================================
   HERO TABLET
   ========================================================= */

@media (max-width: 850px) {

    .service-hero-container {
        align-items: flex-start;

        flex-direction: column;

        gap: 45px;
    }


    .service-hero-number {
        padding-left: 0;

        padding-top: 20px;

        border-left: 0;

        border-top: 1px solid rgba(255, 255, 255, 0.16);
    }
}


/* =========================================================
   HERO MOBILE
   ========================================================= */

@media (max-width: 650px) {

    .service-hero {
        padding: 75px 0 65px;
    }


    .service-hero-content h1 {
        font-size: 42px;

        letter-spacing: -1.8px;
    }


    .service-hero-content p {
        margin-top: 22px;

        font-size: 15px;
    }


    .service-hero-buttons {
        flex-direction: column;

        align-items: stretch;

        margin-top: 30px;
    }


    .service-button {
        width: 100%;
    }


    .service-hero-number strong {
        font-size: 55px;
    }
}


/* =========================================================
   HERO VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 430px) {

    .service-hero-content h1 {
        font-size: 37px;
    }


    .service-button {
        min-height: 50px;

        padding: 0 18px;
    }
}


/* =========================================================
   2. SERVICE INTRO
   ========================================================= */

.service-intro {
    padding: 110px 0;

    background: #ffffff;
}


.service-intro-grid {
    display: grid;

    grid-template-columns: 1.1fr 0.9fr;

    gap: 90px;

    align-items: center;
}


.service-intro-content {
    max-width: 700px;
}


.service-intro-content .section-eyebrow {
    display: inline-block;

    margin-bottom: 20px;

    color: #c8a45d;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
}


.service-intro-content h2 {
    margin: 0;

    max-width: 650px;

    color: #0b1730;

    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.1;
    letter-spacing: -1.8px;
}


.service-intro-content p {
    max-width: 650px;

    margin: 25px 0 0;

    color: #697586;

    font-size: 16px;
    line-height: 1.85;
}


/* =========================================================
   INTRO STATS
   ========================================================= */

.service-intro-stats {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 12px;
}


.service-stat {
    min-height: 180px;

    padding: 30px;

    background: #ffffff;

    border: 1px solid #e5e8ed;

    border-radius: 16px;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}


.service-stat:hover {
    background: #f8f9fb;

    transform: translateY(-3px);
}


.service-stat strong {
    display: block;

    margin-bottom: 45px;

    color: #c8a45d;

    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1px;
}


.service-stat span {
    display: block;

    color: #0b1730;

    font-size: 16px;
    font-weight: 700;
}


/* =========================================================
   INTRO TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .service-intro-grid {
        grid-template-columns: 1fr;

        gap: 55px;
    }
}


/* =========================================================
   INTRO MOBILE
   ========================================================= */

@media (max-width: 650px) {

    .service-intro {
        padding: 75px 0;
    }


    .service-intro-grid {
        gap: 40px;
    }


    .service-intro-content h2 {
        font-size: 35px;

        letter-spacing: -1.2px;
    }


    .service-intro-content p {
        font-size: 15px;
    }


    .service-intro-stats {
        grid-template-columns: repeat(2, 1fr);

        gap: 12px;
    }


    .service-stat {
        min-height: 155px;

        padding: 24px;
    }


    .service-stat strong {
        margin-bottom: 35px;
    }
}


/* =========================================================
   INTRO VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 430px) {

    .service-intro-stats {
        grid-template-columns: 1fr;
    }
}


/* =========================================================
   3. SERVICE FEATURES
   ========================================================= */

.service-features {
    padding: 110px 0;

    background: #f8f9fb;
}


.service-features .section-heading {
    max-width: 760px;

    margin-bottom: 55px;
}


.service-features .section-eyebrow {
    display: inline-block;

    margin-bottom: 20px;

    color: #c8a45d;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
}


.service-features .section-heading h2 {
    margin: 0;

    color: #0b1730;

    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.1;
    letter-spacing: -1.8px;
}


.service-features .section-heading p {
    max-width: 650px;

    margin: 22px 0 0;

    color: #697586;

    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   FEATURE GRID
   ========================================================= */

.service-features-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}


.service-feature-card {
    position: relative;

    min-height: 270px;

    padding: 30px;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid #e5e8ed;

    border-radius: 16px;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}


.service-feature-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 0;
    height: 3px;

    background: #c8a45d;

    transition: width 0.3s ease;
}


.service-feature-card:hover {
    transform: translateY(-8px);

    border-color: #c8a45d;

    box-shadow:
        0 24px 55px rgba(11, 23, 48, 0.10);
}


.service-feature-card:hover::before {
    width: 100%;
}


.service-feature-card > span {
    display: block;

    margin-bottom: 65px;

    color: #c8a45d;

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
}


.service-feature-card h3 {
    margin: 0 0 14px;

    color: #0b1730;

    font-size: 21px;
    line-height: 1.3;
    letter-spacing: -0.4px;
}


.service-feature-card p {
    margin: 0;

    color: #697586;

    font-size: 14px;
    line-height: 1.8;
}


/* =========================================================
   FEATURE TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .service-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* =========================================================
   FEATURE MOBILE
   ========================================================= */

@media (max-width: 650px) {

    .service-features {
        padding: 75px 0;
    }


    .service-features .section-heading {
        margin-bottom: 40px;
    }


    .service-features .section-heading h2 {
        font-size: 35px;

        letter-spacing: -1.2px;
    }


    .service-features .section-heading p {
        font-size: 15px;
    }


    .service-features-grid {
        grid-template-columns: 1fr;

        gap: 20px;
    }


    .service-feature-card {
        min-height: auto;

        padding: 27px;
    }


    .service-feature-card > span {
        margin-bottom: 45px;
    }
}


/* =========================================================
   FEATURE VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 430px) {

    .service-feature-card {
        padding: 24px;
    }


    .service-feature-card h3 {
        font-size: 20px;
    }


    .service-feature-card p {
        font-size: 13px;
    }
}


/* =========================================================
   4. SERVICE PROCESS
   ========================================================= */

.service-process {
    padding: 110px 0;

    background: #ffffff;
}


/* =========================================================
   PROCESS HEADER
   ========================================================= */

.service-process .section-heading {
    max-width: 760px;

    margin-bottom: 60px;
}


.service-process .section-eyebrow {
    display: inline-block;

    margin-bottom: 20px;

    color: #c8a45d;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
}


.service-process .section-heading h2 {
    margin: 0;

    color: #0b1730;

    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.1;
    letter-spacing: -1.8px;
}


.service-process .section-heading p {
    max-width: 650px;

    margin: 22px 0 0;

    color: #697586;

    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   PROCESS GRID
   ========================================================= */

.service-process-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}


/* =========================================================
   PROCESS CARD
   ========================================================= */

.service-process-card {
    position: relative;

    min-height: 300px;

    padding: 35px;

    overflow: hidden;

    background: #f8f9fb;

    border: 1px solid #e5e8ed;

    border-radius: 16px;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}


.service-process-card:hover {
    transform: translateY(-8px);

    background: #ffffff;

    border-color: #c8a45d;

    box-shadow:
        0 24px 55px rgba(11, 23, 48, 0.10);
}


/* =========================================================
   PROCESS NUMBER
   ========================================================= */

.service-process-card .process-number {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    margin-bottom: 55px;

    border-radius: 50%;

    background: #0b1730;

    color: #c8a45d;

    font-size: 14px;
    font-weight: 800;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}


.service-process-card:hover .process-number {
    background: #c8a45d;

    color: #0b1730;

    transform: scale(1.05);
}


/* =========================================================
   PROCESS CARD TITLE
   ========================================================= */

.service-process-card h3 {
    margin: 0 0 14px;

    color: #0b1730;

    font-size: 21px;
    line-height: 1.3;
    letter-spacing: -0.4px;
}


/* =========================================================
   PROCESS CARD TEXT
   ========================================================= */

.service-process-card p {
    margin: 0;

    color: #697586;

    font-size: 14px;
    line-height: 1.8;
}


/* =========================================================
   PROCESS DECORATIVE LINE
   ========================================================= */

.service-process-card::after {
    content: "";

    position: absolute;

    right: 0;
    bottom: 0;

    width: 80px;
    height: 3px;

    background: #c8a45d;

    transform: scaleX(0);

    transform-origin: right;

    transition: transform 0.3s ease;
}


.service-process-card:hover::after {
    transform: scaleX(1);
}


/* =========================================================
   PROCESS CONNECTOR
   ========================================================= */

.service-process-card:not(:last-child)::before {
    content: "";

    position: absolute;

    top: 59px;
    right: -21px;

    width: 20px;
    height: 1px;

    background: #c8a45d;

    opacity: 0.45;
}


/* =========================================================
   PROCESS TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .service-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .service-process-card:nth-child(2)::before {
        display: none;
    }
}


/* =========================================================
   PROCESS MOBILE
   ========================================================= */

@media (max-width: 650px) {

    .service-process {
        padding: 75px 0;
    }


    .service-process .section-heading {
        margin-bottom: 40px;
    }


    .service-process .section-heading h2 {
        font-size: 35px;

        letter-spacing: -1.2px;
    }


    .service-process .section-heading p {
        font-size: 15px;
    }


    .service-process-grid {
        grid-template-columns: 1fr;

        gap: 20px;
    }


    .service-process-card {
        min-height: auto;

        padding: 27px;
    }


    .service-process-card .process-number {
        margin-bottom: 40px;
    }


    .service-process-card::before {
        display: none;
    }
}


/* =========================================================
   PROCESS VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 430px) {

    .service-process-card {
        padding: 24px;
    }


    .service-process-card h3 {
        font-size: 20px;
    }


    .service-process-card p {
        font-size: 13px;
    }
}


/* =========================================================
   5. SERVICE CTA
   ========================================================= */

.service-cta {
    position: relative;

    overflow: hidden;

    padding: 95px 0;

    background:
        radial-gradient(
            circle at 85% 50%,
            rgba(200, 164, 93, 0.12),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #0b1730 0%,
            #101f3d 60%,
            #15294b 100%
        );

    color: #ffffff;
}


/* =========================================================
   CTA DEKORATİF IŞIK
   ========================================================= */

.service-cta::before {
    content: "";

    position: absolute;

    width: 380px;
    height: 380px;

    right: -160px;
    top: -160px;

    border-radius: 50%;

    background: rgba(200, 164, 93, 0.07);

    filter: blur(12px);

    pointer-events: none;
}


/* =========================================================
   CTA CONTAINER
   ========================================================= */

.service-cta .container {
    position: relative;

    z-index: 2;
}


/* =========================================================
   CTA CONTENT
   ========================================================= */

.service-cta-content {
    max-width: 760px;
}


.service-cta .section-eyebrow {
    display: inline-block;

    margin-bottom: 18px;

    color: #c8a45d;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.5px;
}


.service-cta h2 {
    margin: 0;

    max-width: 720px;

    color: #ffffff;

    font-size: clamp(36px, 4.5vw, 56px);
    line-height: 1.08;
    letter-spacing: -2px;
}


.service-cta h2 span {
    color: #c8a45d;
}


.service-cta p {
    max-width: 620px;

    margin: 24px 0 0;

    color: #b9c4d3;

    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   CTA BUTONLARI
   ========================================================= */

.service-cta-buttons {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-top: 30px;
}


.service-cta .service-button {
    min-height: 50px;

    padding: 0 22px;

    border-radius: 7px;

    font-size: 12px;
}


.service-cta .service-button-primary {
    background: #c8a45d;

    border: 1px solid #c8a45d;

    color: #0b1730 !important;
}


.service-cta .service-button-primary:hover {
    background: #d5b875 !important;

    border-color: #d5b875 !important;

    color: #0b1730 !important;

    transform: translateY(-2px);
}


.service-cta .service-button-secondary {
    background: transparent;

    border: 1px solid rgba(255, 255, 255, 0.22);

    color: #ffffff !important;
}


.service-cta .service-button-secondary:hover {
    background: rgba(255, 255, 255, 0.08) !important;

    border-color: rgba(255, 255, 255, 0.45) !important;

    color: #ffffff !important;

    transform: translateY(-2px);
}


/* =========================================================
   CTA LINK FIX
   ========================================================= */

.service-cta a.service-button,
.service-cta a.service-button:visited {
    text-decoration: none !important;
}


.service-cta a.service-button:hover,
.service-cta a.service-button:focus,
.service-cta a.service-button:active {
    text-decoration: none !important;
}


/* İletişime Geç butonu */

.service-cta a[href*="url=iletisim"] {
    display: inline-flex !important;

    align-items: center;
    justify-content: center;

    min-height: 52px;

    padding: 0 26px;

    background: #c8a45d !important;

    color: #0b1730 !important;

    border: 1px solid #c8a45d !important;

    border-radius: 8px;

    font-size: 13px;
    font-weight: 800;

    text-decoration: none !important;

    opacity: 1 !important;
    visibility: visible !important;

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}


.service-cta a[href*="url=iletisim"]:hover {
    background: #d5b875 !important;

    border-color: #d5b875 !important;

    color: #0b1730 !important;

    opacity: 1 !important;
    visibility: visible !important;

    transform: translateY(-2px);
}


.service-cta a[href*="url=iletisim"] strong {
    color: #0b1730 !important;
}


/* =========================================================
   CTA ALT NOT
   ========================================================= */

.service-cta-note {
    display: flex;

    align-items: center;

    gap: 8px;

    margin-top: 22px;

    color: #7f8da1;

    font-size: 11px;
    font-weight: 700;
}


.service-cta-note span {
    color: #c8a45d;

    font-size: 13px;
}


/* =========================================================
   CTA TABLET
   ========================================================= */

@media (max-width: 850px) {

    .service-cta {
        padding: 80px 0;
    }


    .service-cta h2 {
        font-size: 46px;
    }
}


/* =========================================================
   CTA MOBILE
   ========================================================= */

@media (max-width: 650px) {

    .service-cta {
        padding: 70px 0;
    }


    .service-cta-content {
        max-width: 100%;
    }


    .service-cta h2 {
        font-size: 36px;

        letter-spacing: -1.3px;
    }


    .service-cta p {
        margin-top: 20px;

        font-size: 15px;
    }


    .service-cta-buttons {
        flex-direction: column;

        align-items: stretch;

        margin-top: 28px;
    }


    .service-cta .service-button {
        width: 100%;
    }


    .service-cta-note {
        margin-top: 20px;

        font-size: 10px;
    }
}


/* =========================================================
   CTA VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 430px) {

    .service-cta h2 {
        font-size: 32px;
    }


    .service-cta .service-button {
        min-height: 49px;

        padding: 0 18px;
    }
}

