* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #ffffff;
    color: #172033;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

button,
input,
textarea,
select {
    font: inherit;
}

.contact-form-success {
    grid-column: 1 / -1;

    width: 100%;
    box-sizing: border-box;

    margin-bottom: 25px;
    padding: 14px 18px;

    border: 1px solid #bbf7d0;
    border-radius: 10px;

    background: #f0fdf4;
    color: #166534;

    font-size: 14px;
    font-weight: 600;
}
/* =========================================================
   CONTAINER
   ========================================================= */

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
    position: relative;
    z-index: 1000;
    width: 100%;
    background: #0b1730;
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.site-header .container {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}


/* =========================================================
   LOGO
   ========================================================= */

.site-logo {
    flex-shrink: 0;
}

.site-logo a {
    display: inline-block;
    color: #ffffff;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -.6px;
    white-space: nowrap;
    transition: color .25s ease;
}

.site-logo a::after {
    content: ".";
    color: #c8a45d;
}

.site-logo a:hover {
    color: #c8a45d;
}


/* =========================================================
   MENU
   ========================================================= */

.main-menu {
    margin-left: auto;
}

.main-menu>ul {
    display: flex;
    align-items: center;
    gap: 28px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-menu li {
    position: relative;
}

.main-menu>ul>li>a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 8px 0;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    transition: color .25s ease;
}

.main-menu>ul>li>a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 3px;
    width: 0;
    height: 2px;
    background: #c8a45d;
    transition: width .25s ease;
}

.main-menu>ul>li>a:hover {
    color: #c8a45d;
}

.main-menu>ul>li>a:hover::after {
    width: 100%;
}


/* =========================================================
   DROPDOWN
   ========================================================= */

.main-menu .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    min-width: 210px;
    margin: 0;
    padding: 8px 0;
    background: #0b1730;
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 6px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .28);
    list-style: none;
}

.main-menu li.has-dropdown:hover>.dropdown-menu {
    display: block;
}

.main-menu .dropdown-menu .dropdown-menu {
    top: -9px;
    left: calc(100% + 4px);
}

.main-menu .dropdown-menu li {
    width: 100%;
}

.main-menu .dropdown-menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 10px 16px;
    color: #ffffff;
    font-size: 13px;
    white-space: nowrap;
}

.main-menu .dropdown-menu a:hover {
    background: rgba(200, 164, 93, .12);
    color: #c8a45d;
}


/* =========================================================
   HEADER BUTTON
   ========================================================= */

.header-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 20px;
    border: 1px solid #c8a45d;
    border-radius: 5px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    transition: all .25s ease;
}

.header-button:hover {
    background: #c8a45d;
    color: #0b1730;
    transform: translateY(-2px);
}


/* =========================================================
   GENERAL LABEL
   ========================================================= */

.section-label {
    display: inline-block;
    margin-bottom: 16px;
    color: #b18b48;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}


/* =========================================================
   HERO
   ========================================================= */

.hero-section {
    position: relative;
    overflow: hidden;
    padding: 90px 0;
    background:
        radial-gradient(circle at 80% 25%,
            rgba(200, 164, 93, .16),
            transparent 32%),
        linear-gradient(135deg,
            #0b1730 0%,
            #101f3d 58%,
            #172b4d 100%);
    color: #ffffff;
}

.hero-layout {
    min-height: 610px;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    align-items: center;
    gap: 70px;
}


/* =========================================================
   HERO CONTENT
   ========================================================= */

.hero-content {
    min-width: 0;
}

.hero-label {
    display: inline-block;
    margin-bottom: 20px;
    color: #c8a45d;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.2px;
}

.hero-content h1 {
    max-width: 700px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(46px, 5.5vw, 72px);
    line-height: 1.02;
    letter-spacing: -3px;
}

.hero-content h1 span {
    color: #c8a45d;
}

.hero-content>p {
    max-width: 610px;
    margin: 28px 0 0;
    color: #c4cfdd;
    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   HERO ACTIONS
   ========================================================= */

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 52px;
    padding: 0 25px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 800;
    transition: all .25s ease;
}

.hero-button:hover {
    transform: translateY(-3px);
}

.hero-button.primary {
    background: #c8a45d;
    color: #0b1730;
    box-shadow: 0 15px 35px rgba(200, 164, 93, .18);
}

.hero-button.primary:hover {
    background: #d5b574;
}

.hero-button.secondary {
    border: 1px solid rgba(255, 255, 255, .25);
    color: #ffffff;
}

.hero-button.secondary:hover {
    border-color: #c8a45d;
    color: #c8a45d;
}


/* =========================================================
   HERO TRUST / SAYAÇLAR
   ========================================================= */

.hero-trust {
    width: 100%;
    max-width: 610px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 55px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, .13);
}

.hero-trust>div {
    min-width: 0;
}

.hero-trust strong {
    display: block;
    color: #c8a45d;
    font-size: 25px;
    line-height: 1;
    white-space: nowrap;
}

.hero-trust span {
    display: block;
    margin-top: 7px;
    color: #9eabbc;
    font-size: 11px;
    line-height: 1.4;
}


/* =========================================================
   HERO VISUAL
   ========================================================= */

.hero-visual {
    position: relative;
    min-width: 0;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-visual-glow {
    position: absolute;
    width: 430px;
    height: 430px;
    border-radius: 50%;
    background: rgba(200, 164, 93, .12);
    filter: blur(20px);
}

.hero-image {
    position: relative;
    z-index: 2;
    width: min(420px, 90%);
    height: 500px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 220px 220px 18px 18px;
    background: #1b2c4b;
    box-shadow: 0 35px 80px rgba(0, 0, 0, .35);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


/* =========================================================
   HERO FLOATING CARD
   ========================================================= */

.hero-floating-card {
    position: absolute;
    right: 0;
    bottom: 30px;
    z-index: 5;
    min-width: 190px;
    padding: 18px 22px;
    background: #ffffff;
    color: #0b1730;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .28);
}

.hero-floating-card strong {
    display: block;
    font-family: Georgia, serif;
    font-size: 20px;
    font-style: italic;
    line-height: 1.2;
}

.hero-floating-card span {
    display: block;
    margin-top: 5px;
    color: #7b8798;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.4px;
}


/* =========================================================
   SERVICES
   ========================================================= */

.services-section {
    padding: 110px 0;
    background: #f7f8fa;
}

.services-heading {
    display: grid;
    grid-template-columns: 1fr .75fr;
    align-items: end;
    gap: 80px;
    margin-bottom: 55px;
}

.services-heading h2 {
    max-width: 650px;
    margin: 0;
    color: #0b1730;
    font-size: clamp(35px, 4vw, 52px);
    line-height: 1.08;
    letter-spacing: -2px;
}

.services-heading h2 span {
    color: #c8a45d;
}

.services-heading>p {
    margin: 0;
    color: #697586;
    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   SERVICE GRID
   ========================================================= */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}


/* =========================================================
   SERVICE CARD
   ========================================================= */

.service-card {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e4e8ee;
    border-radius: 16px;
    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: #c8a45d;
    box-shadow: 0 25px 55px rgba(11, 23, 48, .12);
}


/* =========================================================
   SERVICE IMAGE
   ========================================================= */

.service-image {
    position: relative;
    width: 100%;
    height: 215px;
    overflow: hidden;
    background: #0b1730;
}

.service-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(11, 23, 48, .35),
            transparent 45%);
    pointer-events: none;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-number {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 30px;
    padding: 0 8px;
    background: rgba(11, 23, 48, .85);
    color: #c8a45d;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
}


/* =========================================================
   SERVICE CONTENT
   ========================================================= */

.service-card-content {
    padding: 25px 27px 28px;
}

.service-category {
    display: block;
    margin-bottom: 9px;
    color: #b18b48;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.service-card h3 {
    margin: 0;
    color: #0b1730;
    font-size: 21px;
    line-height: 1.25;
}

.service-card p {
    margin: 13px 0 0;
    color: #697586;
    font-size: 13px;
    line-height: 1.75;
}

.service-card a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    color: #0b1730;
    font-size: 12px;
    font-weight: 800;
    transition: all .25s ease;
}

.service-card a span {
    color: #b18b48;
    font-size: 17px;
}

.service-card a:hover {
    color: #b18b48;
    gap: 14px;
}


/* =========================================================
   PROJECTS
   ========================================================= */

.projects-section {
    padding: 110px 0;
    background: #ffffff;
}

.projects-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 45px;
}

.projects-heading h2 {
    margin: 0;
    color: #0b1730;
    font-size: clamp(35px, 4vw, 52px);
    line-height: 1.08;
    letter-spacing: -2px;
}

.section-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 7px;
    border-bottom: 1px solid #c8a45d;
    color: #0b1730;
    font-size: 12px;
    font-weight: 800;
    transition: all .25s ease;
}

.section-link span {
    color: #b18b48;
}

.section-link:hover {
    color: #b18b48;
    gap: 14px;
}


/* =========================================================
   PROJECT GRID
   ========================================================= */

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.project-card {
    min-width: 0;
}

.project-card>a {
    display: block;
}


/* =========================================================
   PROJECT IMAGE
   ========================================================= */

.project-image {
    position: relative;
    width: 100%;
    height: 370px;
    overflow: hidden;
    border-radius: 17px;
    background: #0b1730;
}

.project-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(7, 17, 38, .85),
            rgba(7, 17, 38, 0) 60%);
    pointer-events: none;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .55s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}


/* =========================================================
   PROJECT INFO
   ========================================================= */

.project-info {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 25px;
    z-index: 2;
    color: #ffffff;
}

.project-info span {
    display: block;
    margin-bottom: 7px;
    color: #d5b574;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.project-info h3 {
    margin: 0;
    color: #ffffff;
    font-size: 25px;
    line-height: 1.2;
}


/* =========================================================
   ABOUT
   ========================================================= */

.about-section {
    padding: 115px 0;
    background: #f7f8fa;
}

.about-container {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1fr);
    align-items: center;
    gap: 90px;
}

.about-image {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 20px;
    background: #0b1730;
}

.about-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.about-content {
    min-width: 0;
}

.about-content h2 {
    max-width: 600px;
    margin: 0;
    color: #0b1730;
    font-size: clamp(38px, 4.5vw, 58px);
    line-height: 1.05;
    letter-spacing: -2.5px;
}

.about-content>p {
    max-width: 600px;
    margin: 27px 0 0;
    color: #697586;
    font-size: 15px;
    line-height: 1.85;
}


/* =========================================================
   ABOUT BUTTON
   ========================================================= */

.dark-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 50px;
    margin-top: 30px;
    padding: 0 23px;
    border-radius: 5px;
    background: #0b1730;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    transition: all .25s ease;
}

.dark-button:hover {
    background: #c8a45d;
    color: #0b1730;
    transform: translateY(-2px);
}


/* =========================================================
   CTA
   ========================================================= */

.cta-section {
    position: relative;
    overflow: hidden;
    padding: 120px 0 !important;
    background:
        radial-gradient(circle at 85% 20%,
            rgba(200, 164, 93, .15),
            transparent 30%),
        #0b1730;
    color: #ffffff;
}

.cta-layout {
    display: flex;
    justify-content: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-content h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(36px, 5vw, 58px);
    line-height: 1.05;
    letter-spacing: -2px;
}

.cta-content p {
    max-width: 650px;
    margin: 24px auto 0;
    color: #aeb9c9;
    font-size: 15px;
    line-height: 1.8;
}

.cta-content .hero-button {
    margin-top: 30px;
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    background: #071126;
    color: #ffffff;
}

.site-footer .container {
    padding-top: 70px;
    padding-bottom: 25px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 55px;
    padding-bottom: 55px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 18px;
    color: #ffffff;
    font-size: 25px;
    font-weight: 800;
}

.footer-logo::after {
    content: ".";
    color: #c8a45d;
}

.footer-brand p,
.footer-column>p {
    color: #8f9bad;
    font-size: 13px;
    line-height: 1.8;
}

.footer-brand p {
    max-width: 330px;
}

.footer-column h3 {
    margin: 0 0 20px;
    font-size: 14px;
}

.footer-column ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-column li {
    margin-bottom: 11px;
}

.footer-column a {
    color: #8f9bad;
    font-size: 13px;
    transition: color .25s ease;
}

.footer-column a:hover {
    color: #c8a45d;
}

.footer-contact-button {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 17px;
    border: 1px solid #c8a45d;
    border-radius: 5px;
    color: #ffffff !important;
    font-size: 12px !important;
    font-weight: 700;
}

.footer-contact-button:hover {
    background: #c8a45d;
    color: #071126 !important;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-bottom p {
    margin: 0;
    color: #697586;
    font-size: 11px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .hero-layout {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .hero-content>p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-trust {
        margin-left: auto;
        margin-right: auto;
        text-align: left;
    }

    .hero-visual {
        min-height: 500px;
    }

    .services-heading {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .about-content {
        text-align: center;
    }

    .about-content h2,
    .about-content>p {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


/* =========================================================
   HEADER TABLET
   ========================================================= */

@media (max-width: 850px) {

    .site-header .container {
        flex-wrap: wrap;
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .main-menu {
        order: 3;
        width: 100%;
        margin: 0;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .main-menu::-webkit-scrollbar {
        display: none;
    }

    .main-menu>ul {
        width: max-content;
        min-width: 100%;
        justify-content: flex-start;
        gap: 24px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 650px) {

    .container {
        width: calc(100% - 28px);
    }

    .site-header .container {
        min-height: 70px;
    }

    .site-logo a {
        font-size: 21px;
    }

    .header-button {
        min-height: 40px;
        padding: 0 13px;
        font-size: 10px;
    }

    .main-menu>ul {
        gap: 20px;
    }

    .main-menu>ul>li>a {
        font-size: 11px;
    }


    /* HERO */

    .hero-section {
        padding: 65px 0 60px;
    }

    .hero-layout {
        min-height: auto;
        gap: 40px;
    }

    .hero-content h1 {
        font-size: 43px;
        letter-spacing: -1.8px;
    }

    .hero-content>p {
        font-size: 14px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-button {
        width: 100%;
    }

    /*
     * 3 sayaç mobilde de yan yana.
     */

    .hero-trust {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        text-align: center;
    }

    .hero-trust strong {
        font-size: 18px;
    }

    .hero-trust span {
        font-size: 8px;
        line-height: 1.3;
    }

    .hero-visual {
        width: 100%;
        min-height: 430px;
    }

    .hero-visual-glow {
        width: 330px;
        height: 330px;
    }

    .hero-image {
        width: min(350px, 90%);
        height: 400px;
    }

    .hero-floating-card {
        right: 4px;
        bottom: 20px;
        min-width: 165px;
        padding: 15px 18px;
    }


    /* SECTIONS */

    .services-section,
    .projects-section,
    .about-section {
        padding: 75px 0;
    }

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

    .service-image {
        height: 220px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .project-image {
        height: 280px;
    }

    .projects-heading {
        align-items: flex-start;
        flex-direction: column;
    }


    /* ABOUT */

    .about-image {
        height: 360px;
    }

    .about-image img {
        height: 360px;
    }


    /* CTA */

    .cta-section {
        padding: 75px 0;
    }

    .cta-content h2 {
        font-size: 38px;
    }


    /* FOOTER */

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}


/* =========================================================
   VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 430px) {

    .container {
        width: calc(100% - 20px);
    }

    .hero-content h1 {
        font-size: 37px;
    }

    .hero-trust {
        gap: 5px;
    }

    .hero-trust strong {
        font-size: 16px;
    }

    .hero-trust span {
        font-size: 7px;
    }

    .hero-image {
        height: 360px;
    }

    .hero-floating-card {
        right: 0;
        bottom: 15px;
    }

    .project-image {
        height: 230px;
    }
}


/* =========================================================
   HOME ABOUT IMAGE — SABİT
   ========================================================= */

.home-page .about-section .about-image {
    width: 100%;
    height: 500px !important;
    min-height: 0 !important;
    max-height: 500px !important;
    overflow: hidden;
}

.home-page .about-section .about-image img {
    display: block;
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    max-height: 500px !important;
    object-fit: cover !important;
    object-position: center center;
}

/* =========================================================
   CTA — DÜZELTME
   ========================================================= */

.cta-section {
    position: relative;
    overflow: hidden;
    padding: 120px 0 !important;
    background:
        radial-gradient(circle at 85% 20%,
            rgba(200, 164, 93, .15),
            transparent 30%),
        #0b1730;
    color: #ffffff;
}

.cta-section .container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.cta-layout {
    display: block !important;
    width: 100%;
}

.cta-content {
    display: block !important;
    width: 100% !important;
    max-width: 900px !important;
    margin: 0 auto !important;
    text-align: center !important;
}

.cta-content .section-label {
    display: block !important;
    width: fit-content !important;
    margin: 0 auto 18px !important;
    color: #c8a45d;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    line-height: 1.4;
}

.cta-content h2 {
    display: block !important;
    width: 100% !important;
    max-width: 900px !important;
    margin: 0 auto !important;
    color: #ffffff;
    font-size: clamp(36px, 5vw, 58px);
    line-height: 1.05;
    letter-spacing: -2px;
}

.cta-content p {
    display: block !important;
    width: 100% !important;
    max-width: 650px !important;
    margin: 24px auto 0 !important;
    color: #aeb9c9;
    font-size: 15px;
    line-height: 1.8;
    text-align: center !important;
}

.cta-content .hero-button {
    display: inline-flex !important;
    width: auto !important;
    max-width: max-content !important;
    min-height: 52px;
    margin: 30px auto 0 !important;
    padding: 0 25px;
    align-items: center;
    justify-content: center;
}











/* =========================================================
   HAKKIMIZDA SAYFASI
   ========================================================= */

.about-page {
    background: #ffffff;
}


/* =========================================================
   ABOUT HERO
   ========================================================= */

.about-hero {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background:
        radial-gradient(circle at 85% 20%,
            rgba(200, 164, 93, 0.14),
            transparent 30%),
        linear-gradient(135deg,
            #0b1730 0%,
            #101f3d 65%,
            #15294b 100%);
    color: #ffffff;
}

.about-hero-container {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 70px;
}

.about-hero-content h1 {
    max-width: 700px;
    margin: 0;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.05;
    letter-spacing: -2px;
}

.about-hero-content h1 span {
    color: #c8a45d;
}

.about-hero-content p {
    max-width: 620px;
    margin: 28px 0 0;
    color: #cbd5e1;
    font-size: 17px;
    line-height: 1.8;
}

.about-hero-visual {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero-glow {
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(200, 164, 93, 0.13);
    filter: blur(25px);
}

.about-hero-image {
    position: relative;
    z-index: 2;
    width: min(390px, 90%);
    height: 460px;
    overflow: hidden;
    border-radius: 200px 200px 18px 18px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: #1b2c4b;
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.35);
}

.about-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #172b4d, #0b1730);
    color: #ffffff;
    font-family: Georgia, serif;
    font-size: 30px;
    font-style: italic;
}

.about-image-placeholder small {
    margin-top: 10px;
    color: #c8a45d;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 9px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 2px;
}


/* =========================================================
   ABOUT INTRO
   ========================================================= */

.about-intro-section {
    padding: 120px 0;
    background: #ffffff;
}

.about-intro-container {
    display: grid;
    grid-template-columns: 0.9fr 1fr;
    align-items: center;
    gap: 90px;
}

.about-intro-image {
    min-height: 480px;
    overflow: hidden;
    border-radius: 20px;
    background: linear-gradient(145deg, #0b1730, #172b4d);
    box-shadow: 0 25px 60px rgba(11, 23, 48, 0.12);
}

.about-intro-placeholder {
    width: 100%;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 2px;
}

.about-intro-content h2 {
    margin: 0;
    color: #0b1730;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.08;
    letter-spacing: -1.5px;
}

.about-intro-content h2 span {
    color: #c8a45d;
}

.about-intro-content p {
    max-width: 650px;
    margin: 25px 0 0;
    color: #697586;
    font-size: 16px;
    line-height: 1.8;
}

.about-intro-content .dark-button {
    margin-top: 30px;
}


/* =========================================================
   EXPERTISE
   ========================================================= */

.about-expertise-section {
    padding: 110px 0;
    background: #f8f9fb;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.expertise-card {
    position: relative;
    min-height: 270px;
    padding: 30px;
    background: #ffffff;
    border: 1px solid #e5e8ed;
    border-radius: 16px;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.expertise-card:hover {
    transform: translateY(-8px);
    border-color: #c8a45d;
    box-shadow: 0 24px 55px rgba(11, 23, 48, 0.10);
}

.expertise-number {
    display: block;
    margin-bottom: 45px;
    color: #c8a45d;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
}

.expertise-card h3 {
    margin: 0 0 12px;
    color: #0b1730;
    font-size: 20px;
}

.expertise-card p {
    margin: 0;
    color: #697586;
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   PROCESS
   ========================================================= */

.about-process-section {
    padding: 110px 0;
    background: #ffffff;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 55px;
    border-top: 1px solid #e5e8ed;
    border-bottom: 1px solid #e5e8ed;
}

.process-item {
    min-height: 230px;
    padding: 35px 30px;
    border-right: 1px solid #e5e8ed;
}

.process-item:first-child {
    border-left: 1px solid #e5e8ed;
}

.process-item>span {
    display: block;
    margin-bottom: 45px;
    color: #c8a45d;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
}

.process-item h3 {
    margin: 0 0 10px;
    color: #0b1730;
    font-size: 21px;
}

.process-item p {
    margin: 0;
    color: #697586;
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   HİZMETLERİMİZ SAYFASI
   ========================================================= */

.services-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;
}

.services-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);
}

.services-hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 60px;
}

.services-hero-content {
    max-width: 820px;
}

.services-hero-content h1 {
    margin: 0;
    max-width: 800px;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.05;
    letter-spacing: -2.5px;
}

.services-hero-content h1 span {
    display: block;
    color: #c8a45d;
}

.services-hero-content p {
    max-width: 680px;
    margin: 30px 0 0;
    color: #cbd5e1;
    font-size: 17px;
    line-height: 1.8;
}

.services-hero-number {
    flex-shrink: 0;
    min-width: 170px;
    padding-left: 30px;
    border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.services-hero-number strong {
    display: block;
    color: #c8a45d;
    font-size: 70px;
    line-height: 0.9;
    font-weight: 800;
    letter-spacing: -4px;
}

.services-hero-number span {
    display: block;
    margin-top: 14px;
    color: #aeb9c9;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
}


/* =========================================================
   SERVICES PAGE SECTION
   ========================================================= */

.services-page-section {
    padding: 110px 0;
    background: #f8f9fb;
}

.services-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.services-page-card {
    position: relative;
    min-height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    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;
}

.services-page-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: #c8a45d;
    transition: width 0.3s ease;
}

.services-page-card:hover {
    transform: translateY(-8px);
    border-color: #c8a45d;
    box-shadow: 0 24px 55px rgba(11, 23, 48, 0.12);
}

.services-page-card:hover::before {
    width: 100%;
}


/* =========================================================
   SERVICES CARD TOP
   ========================================================= */

.services-page-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 45px;
}

.services-page-number {
    color: #c8a45d;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
}

.services-page-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid #e1e5ea;
    border-radius: 50%;
    color: #0b1730;
    font-size: 18px;
    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.services-page-card:hover .services-page-arrow {
    background: #0b1730;
    border-color: #0b1730;
    color: #c8a45d;
    transform: rotate(45deg);
}


/* =========================================================
   SERVICES CARD CONTENT
   ========================================================= */

.services-page-card h3 {
    margin: 0 0 15px;
    color: #0b1730;
    font-size: 23px;
    line-height: 1.25;
    letter-spacing: -0.4px;
}

.services-page-card p {
    margin: 0;
    color: #697586;
    font-size: 14px;
    line-height: 1.8;
}

.services-page-card>a {
    display: inline-flex;
    align-items: center;
    margin-top: 30px;
    color: #a8833f;
    font-size: 13px;
    font-weight: 800;
    transition:
        color 0.25s ease,
        padding-left 0.25s ease;
}

.services-page-card>a:hover {
    color: #0b1730;
    padding-left: 5px;
}


/* =========================================================
   SERVICES PROCESS
   ========================================================= */

.services-process-section {
    padding: 110px 0;
    background: #ffffff;
}

.services-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 50px;
    border-top: 1px solid #e5e8ed;
    border-bottom: 1px solid #e5e8ed;
}

.services-process-item {
    position: relative;
    min-height: 280px;
    padding: 35px 30px;
    border-right: 1px solid #e5e8ed;
}

.services-process-item:first-child {
    border-left: 1px solid #e5e8ed;
}

.services-process-item span {
    display: inline-block;
    margin-bottom: 55px;
    color: #c8a45d;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
}

.services-process-item h3 {
    margin: 0 0 12px;
    color: #0b1730;
    font-size: 20px;
}

.services-process-item p {
    margin: 0;
    color: #697586;
    font-size: 14px;
    line-height: 1.75;
}


/* =========================================================
   SERVICES CTA
   ========================================================= */

.services-page .cta-section {
    margin-top: 0;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .site-header .container {
        gap: 20px;
    }

    .main-menu>ul {
        gap: 18px;
    }

    .main-menu>ul>li>a {
        font-size: 12px;
    }

    .header-button {
        padding: 0 15px;
        font-size: 11px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content>p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-visual {
        min-height: 500px;
    }

    .section-intro {
        grid-template-columns: 1fr;
        gap: 25px;
    }

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

    .service-card {
        min-height: 390px;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-content {
        text-align: center;
    }

    .about-content>p {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .about-hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-hero-content {
        text-align: center;
    }

    .about-hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .about-intro-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-intro-content {
        text-align: center;
    }

    .about-intro-content p {
        margin-left: auto;
        margin-right: auto;
    }

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

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

    .process-item:nth-child(3) {
        border-left: 1px solid #e5e8ed;
        border-top: 1px solid #e5e8ed;
    }

    .process-item:nth-child(4) {
        border-top: 1px solid #e5e8ed;
    }

    .services-hero-container {
        align-items: flex-start;
        flex-direction: column;
        gap: 45px;
    }

    .services-hero-number {
        padding-left: 0;
        padding-top: 20px;
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.16);
    }

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

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

    .services-process-item:nth-child(2) {
        border-right: 0;
    }

    .services-process-item:nth-child(3),
    .services-process-item:nth-child(4) {
        border-top: 1px solid #e5e8ed;
    }

    .cta-content {
        grid-template-columns: 1fr 340px;
        gap: 80px;
    }

    .cta-image {
        height: 250px;
    }
}


/* =========================================================
   TABLET / SMALL LAPTOP HEADER
   ========================================================= */

@media (max-width: 850px) {

    .site-header .container {
        flex-wrap: wrap;
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .site-logo {
        order: 1;
    }

    .header-button {
        order: 2;
        margin-left: auto;
    }

    .main-menu {
        order: 3;
        width: 100%;
        margin: 0;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .main-menu::-webkit-scrollbar {
        display: none;
    }

    .main-menu>ul {
        justify-content: flex-start;
        width: max-content;
        min-width: 100%;
        gap: 24px;
    }

    .main-menu>ul>li>a {
        min-height: 38px;
    }

    .main-menu .dropdown-menu {
        top: calc(100% + 3px);
    }

    .hero-section {
        padding: 80px 0 65px;
    }
}


/* =========================================================
   CTA TABLET
   ========================================================= */

@media (max-width: 768px) {

    .cta-section {
        padding: 65px 0;
    }

    .cta-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cta-text h2 {
        font-size: 32px;
    }

    .cta-text p {
        font-size: 16px;
    }

    .cta-image {
        width: 100%;
        height: 240px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 650px) {

    .container {
        width: calc(100% - 28px);
    }


    /* HEADER */

    .site-header .container {
        min-height: 70px;
        gap: 10px;
    }

    .site-logo a {
        font-size: 21px;
    }

    .header-button {
        min-height: 40px;
        padding: 0 13px;
        font-size: 10px;
    }

    .main-menu>ul {
        gap: 20px;
    }

    .main-menu>ul>li>a {
        font-size: 11px;
        min-height: 36px;
    }


    /* DROPDOWN */

    .main-menu .dropdown-menu {
        min-width: 180px;
    }

    .main-menu .dropdown-menu a {
        padding: 10px 14px;
        font-size: 12px;
    }


    /* HERO */

    .hero-section {
        padding: 70px 0 55px;
    }

    .hero-content h1 {
        font-size: 43px;
        letter-spacing: -1.8px;
    }

    .hero-content>p {
        font-size: 15px;
    }

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

    .hero-button {
        width: 100%;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-top: 45px;
    }

    .hero-stat strong {
        font-size: 22px;
    }

    .hero-visual {
        min-height: 430px;
    }

    .hero-image {
        width: min(350px, 90%);
        height: 400px;
    }

    .hero-signature {
        right: 5px;
        bottom: 25px;
    }


    /* SECTIONS */

    .services-section,
    .projects-section,
    .about-section {
        padding: 75px 0;
    }

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

    .services-grid {
        gap: 20px;
    }

    .service-card {
        min-height: auto;
    }

    .service-card img {
        height: 220px;
    }

    .service-card h3 {
        padding: 22px 24px 8px;
    }

    .service-card p {
        padding: 0 24px;
    }

    .service-card a {
        padding: 18px 24px 23px;
    }


    /* PROJECTS */

    .project-image {
        height: 280px;
    }

    .project-card h3 {
        margin-top: 20px;
        font-size: 22px;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
    }


    /* ABOUT */

    .about-image {
        min-height: 400px;
    }


    /* ABOUT PAGE */

    .about-hero {
        padding: 75px 0 65px;
    }

    .about-hero-content h1 {
        font-size: 42px;
    }

    .about-hero-content p {
        font-size: 15px;
    }

    .about-hero-visual {
        min-height: 400px;
    }

    .about-hero-image {
        width: min(330px, 90%);
        height: 390px;
    }

    .about-intro-section,
    .about-expertise-section,
    .about-process-section {
        padding: 75px 0;
    }

    .about-intro-image,
    .about-intro-placeholder {
        min-height: 360px;
    }

    .about-intro-content h2 {
        font-size: 35px;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
    }

    .expertise-card {
        min-height: auto;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .process-item {
        border-left: 1px solid #e5e8ed;
        border-top: 1px solid #e5e8ed;
    }

    .process-item:first-child {
        border-top: none;
    }


    /* SERVICES PAGE */

    .services-hero {
        padding: 75px 0 65px;
    }

    .services-hero-container {
        gap: 35px;
    }

    .services-hero-content h1 {
        font-size: 42px;
        letter-spacing: -1.8px;
    }

    .services-hero-content p {
        margin-top: 22px;
        font-size: 15px;
    }

    .services-hero-number strong {
        font-size: 55px;
    }

    .services-page-section {
        padding: 75px 0;
    }

    .services-page-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .services-page-card {
        min-height: 340px;
        padding: 27px;
    }

    .services-process-section {
        padding: 75px 0;
    }

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

    .services-process-item,
    .services-process-item:first-child {
        min-height: auto;
        padding: 30px 25px;
        border-left: 1px solid #e5e8ed;
        border-right: 1px solid #e5e8ed;
        border-bottom: 1px solid #e5e8ed;
    }

    .services-process-item:last-child {
        border-bottom: 0;
    }

    .services-process-item span {
        margin-bottom: 35px;
    }


    /* FOOTER */

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}


/* =========================================================
   VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 430px) {

    .site-header .container {
        width: calc(100% - 20px);
    }

    .site-logo a {
        font-size: 19px;
    }

    .header-button {
        padding: 0 10px;
        font-size: 9px;
    }

    .main-menu>ul {
        gap: 17px;
    }

    .main-menu>ul>li>a {
        font-size: 10px;
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .hero-stats {
        grid-template-columns: 1fr 1fr;
    }

    .project-image {
        height: 230px;
    }

    .services-hero-content h1 {
        font-size: 37px;
    }

    .services-page-card {
        padding: 24px;
    }

    .services-page-card h3 {
        font-size: 21px;
    }

    .services-page-card p {
        font-size: 13px;
    }
}

/* =========================================================
   HAKKIMIZDA - GÖRSEL DÜZELTMELERİ
   ========================================================= */

/* HERO GÖRSELİ */
.about-hero-image {
    position: relative;
    z-index: 2;
    width: min(390px, 90%);
    height: 460px;
    overflow: hidden;
    border-radius: 200px 200px 18px 18px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: #1b2c4b;
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.35);
}

.about-hero-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


/* =========================================================
   ABOUT INTRO GÖRSELİ
   ========================================================= */

.about-intro-image {
    min-height: 480px;
    height: 480px;
    overflow: hidden;
    border-radius: 20px;
    background: #0b1730;
    box-shadow: 0 25px 60px rgba(11, 23, 48, 0.12);
}

.about-intro-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


/* Placeholder kullanılıyorsa da kutuyu doldursun */
.about-intro-placeholder {
    width: 100%;
    height: 100%;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* =========================================================
   MOBİL GÖRSELLER
   ========================================================= */

@media (max-width: 650px) {

    .about-hero-image {
        width: min(330px, 90%);
        height: 390px;
    }

    .about-hero-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .about-intro-image {
        width: 100%;
        height: 360px;
        min-height: 360px;
    }

    .about-intro-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .about-intro-placeholder {
        min-height: 360px;
        height: 360px;
    }
}

/* =========================================================
   ABOUT PAGE IMAGE FIX
   Görseller kutunun tamamını doldursun
========================================================= */

.about-hero-image img,
.about-intro-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Hero görsel kutusu */
.about-hero-image {
    position: relative;
    overflow: hidden;
}

/* Intro / Ben Kimim görsel kutusu */
.about-intro-image {
    position: relative;
    overflow: hidden;
}

/* Placeholder kullanılıyorsa da kutuyu doldursun */
.about-image-placeholder img,
.about-intro-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Mobilde de görseller düzgün otursun */
@media (max-width: 650px) {

    .about-hero-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .about-intro-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}






/* =========================================================
    HİZMETLERİMİZ SAYFASI
    ABOUT TASARIM DİLİNE UYARLANMIŞ SON HAL
    ========================================================= */

.services-page {
    background: #ffffff;
}

/* =========================================================
    SERVICES HERO
    HAKKIMIZDA HERO İLE AYNI YAPI
    ========================================================= */

.services-page .services-hero {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background:
        radial-gradient(circle at 85% 20%,
            rgba(200, 164, 93, 0.14),
            transparent 30%),
        linear-gradient(135deg,
            #0b1730 0%,
            #101f3d 65%,
            #15294b 100%);
    color: #ffffff;
}

.services-page .services-hero-container {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 70px;
}

.services-page .services-hero-content {
    min-width: 0;
}

.services-page .services-hero-content h1 {
    max-width: 700px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.05;
    letter-spacing: -2px;
}

.services-page .services-hero-content h1 span {
    color: #c8a45d;
}

.services-page .services-hero-content p {
    max-width: 620px;
    margin: 28px 0 0;
    color: #cbd5e1;
    font-size: 17px;
    line-height: 1.8;
}


/* =========================================================
    SERVICES HERO VISUAL
    HAKKIMIZDA HERO GÖRSELİYLE AYNI
    ========================================================= */

.services-page .services-hero-visual {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-page .services-hero-glow {
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(200, 164, 93, 0.13);
    filter: blur(25px);
}

.services-page .services-hero-image {
    position: relative;
    z-index: 2;
    width: min(390px, 90%);
    height: 460px;
    overflow: hidden;
    border-radius: 200px 200px 18px 18px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: #1b2c4b;
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.35);
}

.services-page .services-hero-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.services-page .services-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg,
            #172b4d,
            #0b1730);
    color: #ffffff;
    font-family: Georgia, serif;
    font-size: 30px;
    font-style: italic;
}

.services-page .services-image-placeholder small {
    margin-top: 10px;
    color: #c8a45d;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 9px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 2px;
}


/* =========================================================
    HİZMETLER SECTION
    ABOUT EXPERTISE SECTION İLE AYNI BOŞLUK
    ========================================================= */

.services-page .services-list-section {
    padding: 110px 0;
    background: #f8f9fb;
}


/* =========================================================
    SECTION INTRO
    ABOUT'TAKİ YAPIYI KULLAN
    ========================================================= */

.services-page .section-intro {
    display: grid;
    grid-template-columns: 1fr 0.75fr;
    align-items: end;
    gap: 80px;
    margin-bottom: 55px;
}

.services-page .section-intro h2 {
    max-width: 650px;
    margin: 0;
    color: #0b1730;
    font-size: clamp(35px, 4vw, 52px);
    line-height: 1.08;
    letter-spacing: -2px;
}

.services-page .section-intro>p {
    margin: 0;
    color: #697586;
    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
    SERVICE GRID
    ========================================================= */

.services-page .services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}


/* =========================================================
    SERVICE CARD
    ========================================================= */

.services-page .service-card {
    position: relative;
    min-width: 0;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e5e8ed;
    border-radius: 16px;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.services-page .service-card:hover {
    transform: translateY(-8px);
    border-color: #c8a45d;
    box-shadow: 0 24px 55px rgba(11, 23, 48, 0.12);
}


/* =========================================================
    SERVICE CARD IMAGE
    ========================================================= */

.services-page .service-card-image {
    position: relative;
    width: 100%;
    height: 215px;
    overflow: hidden;
    background: #0b1730;
}

.services-page .service-card-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(11, 23, 48, 0.38),
            transparent 55%);
    pointer-events: none;
}

.services-page .service-card-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.services-page .service-card:hover .service-card-image img {
    transform: scale(1.05);
}


/* =========================================================
    IMAGE PLACEHOLDER
    ========================================================= */

.services-page .service-card-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at center,
            rgba(200, 164, 93, 0.15),
            transparent 55%),
        linear-gradient(145deg,
            #172b4d,
            #0b1730);
    color: #c8a45d;
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -2px;
}


/* =========================================================
    SERVICE CONTENT
    ========================================================= */

.services-page .service-card-content {
    position: relative;
    padding: 25px 27px 28px;
}

.services-page .service-card-number {
    display: block;
    margin-bottom: 28px;
    color: #c8a45d;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
}

.services-page .service-card h3 {
    margin: 0;
    color: #0b1730;
    font-size: 21px;
    line-height: 1.25;
}

.services-page .service-card p {
    margin: 13px 0 0;
    color: #697586;
    font-size: 14px;
    line-height: 1.75;
}

.services-page .service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    color: #0b1730;
    font-size: 12px;
    font-weight: 800;
    transition:
        color 0.25s ease,
        gap 0.25s ease;
}

.services-page .service-card-link:hover {
    color: #b18b48;
    gap: 14px;
}


/* =========================================================
    ÇALIŞMA YAKLAŞIMI
    ABOUT PROCESS İLE UYUMLU
    ========================================================= */

.services-page .services-process-section {
    padding: 110px 0;
    background: #ffffff;
}

.services-page .services-process-section .section-heading {
    display: block;
}

.services-page .services-process-section .section-heading h2 {
    max-width: 700px;
    margin: 0;
    color: #0b1730;
    font-size: clamp(35px, 4vw, 52px);
    line-height: 1.08;
    letter-spacing: -2px;
}

.services-page .services-process-section .section-heading p {
    max-width: 650px;
    margin: 25px 0 0;
    color: #697586;
    font-size: 15px;
    line-height: 1.8;
}


/*
    * PHP tarafındaki process-grid / process-item
    * doğrudan ABOUT tasarımını kullanıyor.
    *
    * Bu yüzden ayrıca yeni bir grid sistemi
    * oluşturmuyoruz.
    */

.services-page .services-process-section .process-grid {
    margin-top: 55px;
}


/* =========================================================
    NEDEN BEN?
    ABOUT EXPERTISE KARTLARIYLA AYNI TASARIM
    ========================================================= */

.services-page .services-advantages-section {
    padding: 110px 0;
    background: #f8f9fb;
}

.services-page .advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.services-page .advantage-card {
    position: relative;
    min-height: 270px;
    padding: 30px;
    background: #ffffff;
    border: 1px solid #e5e8ed;
    border-radius: 16px;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.services-page .advantage-card:hover {
    transform: translateY(-8px);
    border-color: #c8a45d;
    box-shadow: 0 24px 55px rgba(11, 23, 48, 0.10);
}

.services-page .advantage-number {
    display: block;
    margin-bottom: 45px;
    color: #c8a45d;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
}

.services-page .advantage-card h3 {
    margin: 0 0 12px;
    color: #0b1730;
    font-size: 20px;
}

.services-page .advantage-card p {
    margin: 0;
    color: #697586;
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
    CTA
    ABOUT CTA İLE AYNI
    ========================================================= */

.services-page .cta-section {
    margin-top: 0;
}


/* =========================================================
    TABLET
    ========================================================= */

@media (max-width: 1000px) {

    .services-page .services-hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .services-page .services-hero-content {
        text-align: center;
    }

    .services-page .services-hero-content h1,
    .services-page .services-hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .services-page .services-hero-visual {
        min-height: 500px;
    }

    .services-page .section-intro {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .services-page .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .services-page .advantages-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


/* =========================================================
    MOBILE
    ========================================================= */

@media (max-width: 650px) {

    .services-page .services-hero {
        padding: 75px 0 65px;
    }

    .services-page .services-hero-container {
        gap: 40px;
    }

    .services-page .services-hero-content h1 {
        font-size: 42px;
        letter-spacing: -1.8px;
    }

    .services-page .services-hero-content p {
        font-size: 15px;
    }

    .services-page .services-hero-visual {
        min-height: 400px;
    }

    .services-page .services-hero-glow {
        width: 330px;
        height: 330px;
    }

    .services-page .services-hero-image {
        width: min(330px, 90%);
        height: 390px;
    }

    .services-page .services-list-section {
        padding: 75px 0;
    }

    .services-page .section-intro {
        gap: 20px;
        margin-bottom: 40px;
    }

    .services-page .section-intro h2 {
        font-size: 35px;
    }

    .services-page .section-intro>p {
        font-size: 14px;
    }

    .services-page .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .services-page .service-card-image {
        height: 220px;
    }

    .services-page .service-card-content {
        padding: 25px 24px 27px;
    }

    .services-page .service-card-number {
        margin-bottom: 25px;
    }

    .services-page .service-card h3 {
        font-size: 21px;
    }

    .services-page .service-card p {
        font-size: 13px;
    }


    /* =====================================================
        PROCESS
        ===================================================== */

    .services-page .services-process-section {
        padding: 75px 0;
    }

    .services-page .services-process-section .section-heading h2 {
        font-size: 35px;
    }

    .services-page .services-process-section .section-heading p {
        font-size: 14px;
    }


    /* =====================================================
        NEDEN BEN
        ===================================================== */

    .services-page .services-advantages-section {
        padding: 75px 0;
    }

    .services-page .advantages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .services-page .advantage-card {
        min-height: auto;
        padding: 27px;
    }

    .services-page .advantage-number {
        margin-bottom: 35px;
    }
}


/* =========================================================
    VERY SMALL MOBILE
    ========================================================= */

@media (max-width: 430px) {

    .services-page .services-hero-content h1 {
        font-size: 37px;
    }

    .services-page .services-hero-image {
        height: 360px;
    }

    .services-page .section-intro h2,
    .services-page .services-process-section .section-heading h2 {
        font-size: 32px;
    }

    .services-page .service-card-image {
        height: 210px;
    }

    .services-page .service-card-content {
        padding: 24px;
    }

    .services-page .service-card h3 {
        font-size: 20px;
    }
}


/* =========================================================
    SERVICES GÖRSELLERİ - KUTUYU TAM DOLDUR
    ========================================================= */

.services-page .services-hero-image img,
.services-page .service-card-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


/* =========================================================
    HOVER ANİMASYONLARINI SABİTLE
    LAYOUT KAYMASINI ÖNLE
    ========================================================= */

.services-page .service-card,
.services-page .advantage-card {
    transform: translateZ(0);
    backface-visibility: hidden;
}

.services-page .service-card:hover,
.services-page .advantage-card:hover {
    will-change: transform;
}


/* =========================================================
    MOBİL GÖRSELLER
    ========================================================= */

@media (max-width: 650px) {

    .services-page .services-hero-image img,
    .services-page .service-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}


/* =========================================================
    CTA
    ========================================================= */

.cta-section {
    padding: 75px 0;
    background: #0b1730;
    color: #ffffff;
}

.cta-content {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr) auto;
    align-items: center;
    gap: 40px;
}

/* CTA GÖRSEL */

.cta-image {
    width: 220px;
    height: 170px;
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
}

.cta-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* CTA YAZI */

.cta-text {
    min-width: 0;
}

.cta-text h2 {
    margin: 0 0 12px;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 700;
    color: #ffffff;
}

.cta-text p {
    max-width: 700px;
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: #cbd5e1;
}

/* CTA BUTON */

.cta-content .hero-button {
    flex-shrink: 0;
    white-space: nowrap;
}

/* =========================================================
    CTA — GÖRSELSİZ DURUM
    ========================================================= */

.cta-content:not(:has(.cta-image)) {
    grid-template-columns: minmax(0, 1fr) auto;
}

/* =========================================================
    CTA RESPONSIVE
    ========================================================= */

@media (max-width: 900px) {

    .cta-content {
        grid-template-columns: 150px minmax(0, 1fr);
        gap: 25px;
    }

    .cta-image {
        width: 150px;
        height: 120px;
    }

    .cta-content .hero-button {
        grid-column: 2;
        justify-self: start;
    }

    .cta-text h2 {
        font-size: 28px;
    }
}

@media (max-width: 650px) {

    .cta-content,
    .cta-content:not(:has(.cta-image)) {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-image {
        width: 100%;
        max-width: 220px;
        height: 150px;
        margin: 0 auto;
    }

    .cta-content .hero-button {
        grid-column: auto;
        justify-self: center;
    }

    .cta-text p {
        margin-left: auto;
        margin-right: auto;
    }
}





/* =========================================================
   İLETİŞİM SAYFASI
========================================================= */

.contact-page {
    background: #ffffff;
}


/* =========================================================
   HERO
========================================================= */

.contact-hero {
    position: relative;
    overflow: hidden;
    padding: 95px 0 90px;
    background: #f7f8fa;
}

.contact-hero::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    top: -260px;
    right: -180px;
    border-radius: 50%;
    background: rgba(200, 164, 93, .08);
    pointer-events: none;
}

.contact-hero-container {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
    align-items: center;
    gap: 70px;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
}

.contact-hero .section-label,
.contact-info-section .section-label,
.contact-form-section .section-label,
.contact-map-section .section-label {
    display: inline-block;
    margin-bottom: 18px;
    color: #b18b48;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.5px;
}

.contact-hero h1 {
    max-width: 760px;
    margin: 0;
    color: #0b1730;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.05;
    letter-spacing: -2.8px;
}

.contact-hero h1 span {
    color: #c8a45d;
}

.contact-hero-content>p {
    max-width: 680px;
    margin: 25px 0 0;
    color: #697586;
    font-size: 16px;
    line-height: 1.85;
}

.contact-hero-visual {
    position: relative;
    min-height: 310px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-hero-glow {
    position: absolute;
    width: 270px;
    height: 270px;
    border-radius: 50%;
    background: rgba(200, 164, 93, .10);
    filter: blur(2px);
}

.contact-hero-card {
    position: relative;
    z-index: 2;
    width: 270px;
    min-height: 190px;
    padding: 28px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid #e1e6ec;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 25px 60px rgba(11, 23, 48, .10);
    gap: 10px;
}

.contact-hero-card-number {
    color: #c8a45d;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
}

.contact-hero-card strong {
    color: #0b1730;
    font-size: 18px;
    letter-spacing: 1px;
    display: block;
}

.contact-hero-card small {
    color: #8a94a3;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-top: 0;
    display: block;
}


/* =========================================================
   İLETİŞİM BİLGİLERİ
========================================================= */

.contact-info-section {
    padding: 95px 0;
    background: #ffffff;
}

.section-intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, .7fr);
    align-items: end;
    gap: 60px;
    margin-bottom: 45px;
}

.section-intro h2,
.contact-form-intro h2,
.contact-map-section h2 {
    margin: 0;
    color: #0b1730;
    font-size: clamp(30px, 3vw, 44px);
    line-height: 1.12;
    letter-spacing: -1.5px;
}

.section-intro>p {
    margin: 0;
    color: #697586;
    font-size: 14px;
    line-height: 1.8;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.contact-info-card {
    position: relative;
    min-height: 210px;
    padding: 28px;
    box-sizing: border-box;
    border: 1px solid #e2e7ed;
    border-radius: 16px;
    background: #ffffff;
    transition:
        transform .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;
}

.contact-info-card:hover {
    transform: translateY(-6px);
    border-color: #c8a45d;
    box-shadow: 0 18px 40px rgba(11, 23, 48, .08);
}

.contact-info-number {
    display: block;
    margin-bottom: 35px;
    color: #c8a45d;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}

.contact-info-card h3 {
    margin: 0 0 12px;
    color: #0b1730;
    font-size: 18px;
}

.contact-info-card p {
    margin: 0;
    color: #697586;
    font-size: 13px;
    line-height: 1.7;
}

.contact-info-link {
    display: inline-block;
    margin-top: 16px;
    color: #b18b48;
    font-size: 12px;
    font-weight: 800;
    transition: color .2s ease;
}

.contact-info-link:hover {
    color: #0b1730;
}


/* =========================================================
   FORM
========================================================= */

.contact-form-section {
    padding: 95px 0;
    background: #f7f8fa;
}

.contact-form-wrapper {
    display: grid;
    grid-template-columns: minmax(260px, .7fr) minmax(0, 1.3fr);
    gap: 70px;
    padding: 55px;
    border: 1px solid #e1e6ec;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 20px 55px rgba(11, 23, 48, .06);
}

.contact-form-intro p {
    margin: 22px 0 0;
    color: #697586;
    font-size: 14px;
    line-height: 1.8;
}

.contact-form {
    margin: 0;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.contact-form-field {
    min-width: 0;
}

.contact-form-full {
    grid-column: 1 / -1;
}

.contact-form-field label {
    display: block;
    margin-bottom: 8px;
    color: #0b1730;
    font-size: 12px;
    font-weight: 800;
}

.contact-form-field input,
.contact-form-field textarea {
    display: block;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #d9dfe7;
    border-radius: 8px;
    outline: none;
    background: #f9fafb;
    color: #172033;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    transition:
        border-color .25s ease,
        background .25s ease,
        box-shadow .25s ease;
}

.contact-form-field input {
    height: 52px;
    padding: 0 16px;
}

.contact-form-field textarea {
    min-height: 165px;
    padding: 14px 16px;
    resize: vertical;
    line-height: 1.6;
}

.contact-form-field input::placeholder,
.contact-form-field textarea::placeholder {
    color: #9aa5b4;
}

.contact-form-field input:focus,
.contact-form-field textarea:focus {
    background: #ffffff;
    border-color: #c8a45d;
    box-shadow: 0 0 0 3px rgba(200, 164, 93, .12);
}

.contact-form-full .hero-button {
    margin-top: 2px;
}


/* =========================================================
   HARİTA
========================================================= */

.contact-map-section {
    padding: 95px 0;
    background: #ffffff;
}

.contact-map-section .section-heading {
    margin-bottom: 35px;
}

.contact-map {
    width: 100%;
    overflow: hidden;
    border: 1px solid #e1e6ec;
    border-radius: 20px;
    background: #e9edf2;
    box-shadow: 0 18px 45px rgba(11, 23, 48, .06);
}

.contact-map iframe {
    display: block;
    width: 100%;
    min-height: 430px;
    border: 0;
}


/* =========================================================
   CTA
========================================================= */

.contact-page .cta-section {
    position: relative;
    overflow: hidden;
}

.contact-page .cta-section::before {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    top: -220px;
    right: -100px;
    border-radius: 50%;
    background: rgba(200, 164, 93, .08);
    pointer-events: none;
}


/* =========================================================
   BAŞARI / HATA MESAJLARI
========================================================= */

.contact-success {
    margin-bottom: 25px;
    padding: 15px 18px;
    border: 1px solid #cce8d2;
    border-radius: 8px;
    background: #f1fbf3;
    color: #236b35;
    font-size: 13px;
}

.contact-error {
    margin-bottom: 25px;
    padding: 15px 18px;
    border: 1px solid #f0cccc;
    border-radius: 8px;
    background: #fff5f5;
    color: #9b2c2c;
    font-size: 13px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .contact-hero-container {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .contact-hero-visual {
        min-height: 230px;
    }

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

    .contact-form-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}


/* =========================================================
   MOBİL
========================================================= */

@media (max-width: 650px) {

    .contact-hero {
        padding: 65px 0 60px;
    }

    .contact-hero h1 {
        font-size: 40px;
        letter-spacing: -1.8px;
    }

    .contact-hero-content>p {
        font-size: 14px;
    }

    .contact-hero-visual {
        min-height: 210px;
    }

    .contact-hero-card {
        width: 240px;
        min-height: 170px;
    }

    .contact-info-section,
    .contact-form-section,
    .contact-map-section {
        padding: 65px 0;
    }

    .section-intro {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 30px;
    }

    .section-intro h2,
    .contact-form-intro h2,
    .contact-map-section h2 {
        font-size: 32px;
    }

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

    .contact-info-card {
        min-height: 175px;
    }

    .contact-info-number {
        margin-bottom: 25px;
    }

    .contact-form-wrapper {
        padding: 30px 22px;
        border-radius: 18px;
    }

    .contact-form-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .contact-form-full {
        grid-column: auto;
    }

    .contact-form-field input {
        height: 50px;
    }

    .contact-form-field textarea {
        min-height: 145px;
    }

    .contact-form-full .hero-button {
        width: 100%;
    }

    .contact-map iframe {
        min-height: 300px;
    }
}


/* =========================================================
   HEADER LOGO
========================================================= */

.site-logo {
    display: flex;
    align-items: center;
}

.site-logo a {
    display: flex;
    align-items: center;
}

.site-logo img {
    display: block;
    width: 250px;
    height: auto;
    max-width: 100%;
}

/* =========================================================
   FOOTER LOGO
========================================================= */

.footer-logo {
    display: inline-flex;
    align-items: center;
}

.footer-logo img {
    display: block;
    width: 230px;
    height: auto;
    max-width: 100%;
}


/* =========================================================
   MOBİL MENÜ BUTONU
========================================================= */

.mobile-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 8px;
    border: none;
    background: transparent !important;
    cursor: pointer;

    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 3px;
    background-color: #172033 !important;
    border-radius: 3px;
    opacity: 1 !important;
}


/* =========================================================
   MOBİL HEADER
========================================================= */

@media (max-width: 768px) {

    .site-header .container {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .site-logo img {
        width: 175px;
        height: auto;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .main-menu {
        display: none;
    }

    .header-button {
        display: none;
    }

}










/* =========================================================
   MOBİL HEADER — TEMİZ DÜZEN
========================================================= */

@media (max-width: 768px) {

    .site-header .container {
        position: relative;

        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;

        width: 100%;
    }


    /* =====================================================
       LOGO
    ===================================================== */

    .site-header .site-logo {
        display: flex !important;
        align-items: center !important;

        margin: 0 !important;
        padding: 0 !important;

        order: 1 !important;
    }

    .site-header .site-logo img {
        display: block !important;

        width: auto !important;
        max-width: 150px !important;
        height: auto !important;
    }


    /* =====================================================
       HAMBURGER
    ===================================================== */

    .site-header .mobile-menu-toggle {
        display: flex !important;

        width: 44px !important;
        height: 44px !important;

        margin: 0 !important;
        padding: 0 !important;

        order: 2 !important;

        flex-shrink: 0 !important;

        border: none !important;
        outline: none !important;

        background: transparent !important;

        align-items: center !important;
        justify-content: center !important;

        flex-direction: column !important;
        gap: 5px !important;

        cursor: pointer;

        z-index: 1001;
    }


    /* ÇİZGİLER */

    .site-header .mobile-menu-toggle span {
        display: block !important;

        width: 26px !important;
        height: 3px !important;
        min-height: 3px !important;

        margin: 0 !important;
        padding: 0 !important;

        background: #ffffff !important;
        background-color: #ffffff !important;

        border: none !important;
        border-radius: 3px !important;

        opacity: 1 !important;
        visibility: visible !important;
    }


    /* =====================================================
       CTA GİZLE
    ===================================================== */

    .site-header .header-button {
        display: none !important;
    }


    /* =====================================================
       ANA MENÜ
    ===================================================== */

    .site-header .main-menu {
        display: none !important;

        position: absolute;

        top: calc(100% + 10px);
        right: 0;
        left: auto;

        width: 280px;
        max-width: calc(100vw - 30px);

        padding: 12px;

        background: rgba(15, 30, 55, 0.60);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.12);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
        border: 1px solid #e5e7eb;
        border-radius: 16px;

        box-shadow: 0 15px 35px rgba(15, 23, 42, 0.12);

        z-index: 1000;
    }

    .site-header .main-menu.active {
        display: block !important;
    }


    /* =====================================================
       MENÜ LİSTESİ
    ===================================================== */

    .site-header .main-menu>ul {
        display: flex !important;

        flex-direction: column !important;

        width: 100%;

        margin: 0;
        padding: 0;

        list-style: none;
    }

    .site-header .main-menu li {
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .site-header .main-menu li a {
        display: flex;

        align-items: center;
        justify-content: space-between;

        width: 100%;

        padding: 13px 14px;

        color: #ffffff;

        text-decoration: none;

        border-radius: 10px;

        font-size: 15px;
        font-weight: 600;
    }


    .site-header .main-menu li a:hover {
        background: #f1f5f9;
        color: #2563eb;
    }


    /* =====================================================
       ALT MENÜ
    ===================================================== */

    .site-header .main-menu .dropdown-menu {
        position: static;

        display: block;

        width: 100%;

        margin: 0;
        padding: 0 0 0 12px;

        border: 0;

        box-shadow: none;

        background: transparent;
    }


    /* =====================================================
       HAMBURGER → X
    ===================================================== */

    .site-header .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .site-header .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0 !important;
    }

    .site-header .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}


/* =========================================================
   KÜÇÜK TELEFON
========================================================= */

@media (max-width: 480px) {

    .site-header .site-logo img {
        max-width: 135px !important;
    }

    .site-header .mobile-menu-toggle {
        width: 40px !important;
        height: 40px !important;
    }

    .site-header .mobile-menu-toggle span {
        width: 24px !important;
    }
}
/* =========================================================
   ABOUT — ÇALIŞMA YAKLAŞIMI / 4 KOLON
========================================================= */

.about-process-section .process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

