/* ==================================================
   YAPITAŞ MOBİL TASARIM

   Yalnızca 768px ve altındaki ekranlarda çalışır.
   Masaüstü tasarımını değiştirmez.
================================================== */

.menu-toggle,
.menu-overlay {
    display: none;
}

/* ==================================================
   TABLET VE TELEFON
================================================== */

@media screen and (max-width: 768px) {

    /* GENEL AYARLAR */

    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    body.menu-open {
        overflow: hidden;
    }

    *,
    *::before,
    *::after {
        box-sizing: border-box;
    }

    img,
    iframe,
    video,
    picture {
        max-width: 100%;
    }

    button,
    a,
    input,
    select,
    textarea {
        -webkit-tap-highlight-color: transparent;
    }

    .container,
    .section-container {
        width: calc(100% - 28px);
        max-width: 1200px;
        margin-right: auto;
        margin-left: auto;
    }

    /* ==================================================
       ÜST MENÜ
    ================================================== */

    .site-header {
        position: sticky;
        top: 0;
        z-index: 2000;

        width: 100%;

        background-color: #ffffff;
        box-shadow: 0 3px 14px rgba(0, 0, 0, 0.1);
    }

    .navbar {
        position: relative;

        width: 100%;
        min-height: 78px;

        margin: 0;
        padding: 8px 12px;

        display: flex;
        align-items: center;
        justify-content: center;
    }

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

    .logo {
        position: absolute;
        top: 50%;
        left: 50%;
        z-index: 2050;

        width: max-content;
        min-height: 44px;
        max-width: calc(100% - 108px);

        margin: 0;

        display: flex;
        align-items: center;
        justify-content: center;
        gap: 2px;

        transform: translate(-50%, -50%);
    }

    .logo img {
        width: 48px;
        height: 48px;

        flex-shrink: 0;

        object-fit: contain;
    }

    .logo-text {
        width: 158px;
        min-width: 0;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        text-align: center;
    }

    .company-name {
        width: 100%;

        display: block;

        font-size: 1.45rem;
        line-height: 1;
        letter-spacing: 0.08rem;

        text-align: center;
        white-space: nowrap;

        -webkit-text-stroke: 0.18px currentColor;
        text-rendering: geometricPrecision;
    }

    .company-subtitle {
        width: 100%;
        margin-top: 4px;

        display: block;

        font-size: 0.55rem;
        line-height: 1.1;
        letter-spacing: -0.015rem;

        text-align: center;
        white-space: nowrap;
    }

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

    .menu-toggle {
        position: absolute;
        top: 50%;
        right: 12px;
        z-index: 2300;

        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;

        padding: 0;

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

        background-color: #f3f5f7;

        border: 1px solid #dce3ea;
        border-radius: 9px;

        cursor: pointer;

        transform: translateY(-50%);
    }

    .menu-toggle span {
        width: 19px;
        height: 2px;

        display: block;

        background-color: #173b6c;
        border-radius: 999px;

        transition:
            transform 0.25s ease,
            opacity 0.2s ease;
    }

    .menu-toggle.is-open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle.is-open span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.is-open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .menu-toggle:focus-visible {
        outline: 3px solid rgba(33, 150, 211, 0.35);
        outline-offset: 2px;
    }

    /* ==================================================
       SAĞDAN AÇILAN MENÜ
    ================================================== */

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        z-index: 2250;

        width: min(84vw, 330px);
        max-width: 330px;

        height: 100vh;
        height: 100dvh;

        margin: 0;
        padding: 96px 18px 24px;

        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 10px;

        overflow-x: hidden;
        overflow-y: auto;

        list-style: none;

        background-color: #ffffff;
        box-shadow: -12px 0 30px rgba(0, 0, 0, 0.18);

        transform: translateX(105%);
        visibility: hidden;
        pointer-events: none;

        transition:
            transform 0.28s ease,
            visibility 0s linear 0.28s;
    }

    .nav-links.is-open {
        transform: translateX(0);
        visibility: visible;
        pointer-events: auto;

        transition:
            transform 0.28s ease,
            visibility 0s linear 0s;
    }

    .nav-links li,
    .nav-links li:last-child {
        width: 100%;
        margin: 0;
        grid-column: auto;
    }

    .nav-links a {
        width: 100%;
        min-height: 48px;

        padding: 12px 14px;

        display: flex;
        align-items: center;
        justify-content: flex-start;

        color: #26313c;
        background-color: #f4f6f8;

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

        font-size: 0.9rem;
        font-weight: 650;
        line-height: 1.2;

        text-align: left;
        white-space: normal;

        transition:
            color 0.2s ease,
            background-color 0.2s ease,
            border-color 0.2s ease,
            transform 0.1s ease;
    }

    .nav-links a:hover,
    .nav-links a:focus-visible {
        color: #173b6c;
        background-color: #edf3f9;
        border-color: #bfd0e3;
    }

    .nav-links a:active {
        transform: scale(0.98);
    }

    .nav-links a.active {
        color: #ffffff;
        background: linear-gradient(
            135deg,
            #1e3c72 0%,
            #2a5298 100%
        );

        border-color: #1e3c72;
        box-shadow: 0 4px 12px rgba(30, 60, 114, 0.2);
    }

    /* ==================================================
       MENÜ KARARTMA ALANI
    ================================================== */

    .menu-overlay {
        position: fixed;
        inset: 0;
        z-index: 2200;

        display: block;

        background-color: rgba(5, 18, 36, 0.54);

        opacity: 0;
        visibility: hidden;
        pointer-events: none;

        transition:
            opacity 0.25s ease,
            visibility 0s linear 0.25s;
    }

    .menu-overlay.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;

        transition:
            opacity 0.25s ease,
            visibility 0s linear 0s;
    }

    /* ==================================================
       ORTAK SAYFA BAŞLIKLARI
    ================================================== */

    .page-header {
        padding: 44px 18px;
    }

    .page-header h1 {
        margin-bottom: 10px;

        font-size: 2rem;
        line-height: 1.2;
    }

    .page-header p {
        max-width: 620px;

        margin-right: auto;
        margin-left: auto;

        font-size: 0.9rem;
        line-height: 1.6;
    }

    /* ==================================================
       ANA SAYFA HERO
    ================================================== */

    .hero {
        position: relative;

        width: 100%;
        min-height: 500px;

        display: flex;
        align-items: center;
        justify-content: center;

        overflow: hidden;
    }

    .hero-bg {
        position: absolute;
        inset: 0;

        width: 100%;
        height: 100%;

        object-fit: cover;
        object-position: center;
    }

    .hero-overlay {
        position: absolute;
        inset: 0;

        background-color: rgba(8, 24, 50, 0.77);
    }

    .hero-content {
        position: relative;
        z-index: 3;

        width: calc(100% - 30px);
        max-width: 650px;

        margin-right: auto;
        margin-left: auto;
        padding: 40px 0;

        text-align: center;
    }

    .hero-content > * {
        max-width: 100%;
    }

    .hero-label {
        margin-bottom: 15px;
        padding: 7px 13px;

        font-size: 0.8rem;
    }

    .hero-content h1 {
        margin-right: auto;
        margin-bottom: 17px;
        margin-left: auto;

        font-size: clamp(2.1rem, 9vw, 3rem);
        line-height: 1.12;
    }

    .hero-content p {
        margin-right: auto;
        margin-bottom: 25px;
        margin-left: auto;

        font-size: 0.94rem;
        line-height: 1.65;
    }

    .hero-buttons {
        width: 100%;
        max-width: 330px;

        margin: 0 auto;

        display: grid;
        grid-template-columns: 1fr;
        gap: 11px;
    }

    .hero-button {
        width: 100%;
        min-height: 48px;

        padding: 11px 16px;

        font-size: 0.9rem;
    }

    /* ==================================================
       GÜVEN BİLGİLERİ
    ================================================== */

    .trust-section {
        padding: 16px 0;
    }

    .trust-bar {
        display: grid;
        grid-template-columns: 1fr;

        border-radius: 10px;
    }

    .trust-item {
        min-height: 64px;

        padding: 12px 15px;

        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 11px;

        text-align: left;

        border-right: none;
        border-bottom: 1px solid #e1e6ec;
    }

    .trust-item:last-child {
        border-bottom: none;
    }

    .trust-item-simple {
        flex-direction: row;
        justify-content: flex-start;
    }

    .trust-icon,
    .trust-item-simple .trust-icon {
        width: 38px;
        height: 38px;

        flex-shrink: 0;

        font-size: 0.9rem;
    }

    .trust-text {
        text-align: left;
    }

    .trust-text h2,
    .trust-item-simple h2 {
        margin: 0;

        font-size: 0.86rem;
        line-height: 1.3;

        text-align: left;
    }

    .trust-text p {
        margin-top: 3px;

        font-size: 0.75rem;
        line-height: 1.4;
    }

    /* ==================================================
       ANA SAYFA ORTAK BÖLÜMLER
    ================================================== */

    .home-services,
    .home-about,
    .featured-projects,
    .references-section {
        padding: 46px 0;
    }

    .home-section-heading {
        margin-bottom: 27px;
    }

    .section-label {
        margin-bottom: 7px;

        font-size: 0.76rem;
    }

    .home-section-heading h2 {
        margin-bottom: 10px;

        font-size: 1.9rem;
    }

    .home-section-heading p {
        font-size: 0.88rem;
        line-height: 1.6;
    }

    /* ==================================================
       ANA SAYFA HİZMETLER
    ================================================== */

    .home-services-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 15px;
    }

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

        padding: 22px 18px;

        border-radius: 11px;
    }

    .home-service-card:hover {
        transform: none;
    }

    .home-service-icon {
        width: 48px;
        height: 48px;

        margin-bottom: 13px;

        font-size: 1.4rem;
    }

    .home-service-card h3 {
        margin-bottom: 8px;

        font-size: 1.18rem;
    }

    .home-service-card p {
        min-height: auto;

        margin-bottom: 13px;

        font-size: 0.86rem;
        line-height: 1.6;
    }

    .home-service-card a {
        min-height: 44px;

        display: inline-flex;
        align-items: center;

        font-size: 0.86rem;
    }

    /* ==================================================
       ANA SAYFA HAKKIMIZDA
    ================================================== */

    .home-about-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .home-about-image {
        width: 100%;

        overflow: hidden;

        border-radius: 12px;
    }

    .home-about-image > img,
    .home-about-image img {
        width: 100%;
        height: 285px;

        object-fit: cover;
        object-position: center;

        border-radius: 12px;
    }

    .experience-box {
        right: 12px;
        bottom: 12px;

        width: 112px;
        min-height: 92px;

        padding: 13px;
    }

    .experience-box strong {
        font-size: 1.5rem;
    }

    .experience-box span {
        font-size: 0.75rem;
    }

    .home-about-content h2 {
        margin-bottom: 15px;

        font-size: 1.9rem;
    }

    .home-about-content p {
        margin-bottom: 13px;

        font-size: 0.9rem;
        line-height: 1.7;
    }

    .home-about-list {
        margin: 19px 0 22px;

        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .home-about-list li {
        padding-left: 25px;

        font-size: 0.86rem;
    }

    .about-button {
        min-width: 44px;
        min-height: 48px;

        padding: 11px 19px;

        font-size: 0.88rem;
    }

    /* ==================================================
       ANA SAYFA PROJELER
    ================================================== */

    .featured-projects-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 17px;
    }

    .featured-project-card {
        width: 100%;

        border-radius: 11px;
    }

    .featured-project-card:hover {
        transform: none;
    }

    .featured-project-image {
        width: 100%;

        aspect-ratio: 16 / 10;
        overflow: hidden;
    }

    .featured-project-image img {
        width: 100%;
        height: 100%;

        object-fit: cover;
        object-position: center;
    }

    .featured-project-content {
        padding: 17px;
    }

    .featured-project-content a {
        min-height: 44px;

        display: inline-flex;
        align-items: center;
    }

    .all-projects-wrapper {
        margin-top: 26px;
    }

    .all-projects-button {
        min-height: 48px;

        padding: 11px 20px;

        font-size: 0.88rem;
    }

    /* ==================================================
       REFERANSLAR
    ================================================== */

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

    .reference-item {
        width: 100%;
        min-width: 0;
        min-height: 118px;

        padding: 13px;

        overflow: hidden;

        border-radius: 10px;
    }

    .reference-item:hover {
        transform: none;
    }

    .reference-item img {
        width: auto;
        max-width: 90%;
        height: 68px;

        margin: 0 auto;

        object-fit: contain;
    }

    /* ==================================================
       ANA SAYFA İLETİŞİM
    ================================================== */

    .home-contact {
        padding: 43px 0;
    }

    .home-contact-inner {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 22px;

        text-align: center;
    }

    .home-contact-label {
        font-size: 0.78rem;
    }

    .home-contact h2 {
        font-size: 1.9rem;
    }

    .home-contact p {
        font-size: 0.88rem;
        line-height: 1.6;
    }

    .home-contact-button {
        width: 100%;
        max-width: 280px;
        min-height: 48px;

        padding: 11px 18px;

        font-size: 0.88rem;
    }

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

    .about-content-section {
        padding: 44px 0;
    }

    .about-text {
        max-width: 680px;

        margin-bottom: 38px;
    }

    .about-text h2 {
        margin-bottom: 17px;

        font-size: 1.9rem;
    }

    .about-text p {
        margin-bottom: 14px;

        font-size: 0.9rem;
        line-height: 1.7;
    }

    .section-title {
        margin-bottom: 26px;

        font-size: 1.9rem;
    }

    .values {
        display: grid;
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .value-card,
    .value-card:last-child {
        width: 100%;
        max-width: none;

        margin: 0;
        padding: 24px 18px;

        grid-column: auto;
    }

    .value-card:hover {
        transform: none;
    }

    .value-icon {
        margin-bottom: 12px;

        font-size: 2.4rem;
    }

    .value-card h3 {
        margin-bottom: 9px;

        font-size: 1.24rem;
    }

    .value-card p {
        font-size: 0.86rem;
        line-height: 1.6;
    }

    .stats {
        padding: 44px 0;
    }

    .stats-inner h2 {
        margin-bottom: 26px;

        font-size: 1.9rem;
    }

    .stats-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 13px;
    }

    .stat-item {
        padding: 20px 15px;
    }

    .stat-item strong {
        margin-bottom: 6px;

        font-size: 2.3rem;
    }

    .stat-item span {
        font-size: 0.9rem;
    }

    /* ==================================================
       HİZMETLER SAYFASI
    ================================================== */

    .services-section,
    .working-process {
        padding: 44px 0;
    }

    .services-intro,
    .process-heading {
        margin-bottom: 26px;
    }

    .services-intro h2,
    .process-heading h2 {
        margin-bottom: 10px;

        font-size: 1.9rem;
    }

    .services-intro p,
    .process-heading p {
        font-size: 0.88rem;
        line-height: 1.6;
    }

    .services-grid,
    .process-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .service-card {
        padding: 22px 18px;

        border-radius: 11px;
    }

    .service-card:hover {
        transform: none;
    }

    .service-icon {
        width: 48px;
        height: 48px;

        margin-bottom: 13px;

        font-size: 1.4rem;
    }

    .service-card h3 {
        margin-bottom: 8px;

        font-size: 1.18rem;
    }

    .service-card p {
        margin-bottom: 12px;

        font-size: 0.86rem;
        line-height: 1.6;
    }

    .service-card a {
        min-height: 44px;

        display: inline-flex;
        align-items: center;

        font-size: 0.86rem;
    }

    .process-item {
        padding: 22px 18px;
    }

    .process-number {
        width: 46px;
        height: 46px;

        margin-bottom: 13px;

        font-size: 1rem;
    }

    .process-item h3 {
        margin-bottom: 8px;

        font-size: 1.15rem;
    }

    .process-item p {
        font-size: 0.84rem;
        line-height: 1.55;
    }

    .services-contact {
        padding: 42px 0;
    }

    .services-contact-inner {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 21px;

        text-align: center;
    }

    .services-contact h2 {
        font-size: 1.8rem;
    }

    .services-contact p {
        margin-right: auto;
        margin-left: auto;

        font-size: 0.9rem;
    }

    .services-contact-button {
        width: 100%;
        max-width: 280px;
        min-height: 48px;

        padding: 11px 18px;

        font-size: 0.88rem;
    }

    /* ==================================================
       PROJELER SAYFASI
    ================================================== */

    .projects-section {
        padding: 44px 0;
    }

    .projects-intro {
        margin-bottom: 26px;
    }

    .projects-intro h2 {
        margin-bottom: 10px;

        font-size: 1.9rem;
    }

    .projects-intro p {
        font-size: 0.88rem;
        line-height: 1.6;
    }

    .gallery-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .gallery-item {
        width: 100%;

        border-radius: 11px;
    }

    .gallery-item:hover {
        transform: none;
    }

    .gallery-image {
        width: 100%;

        aspect-ratio: 4 / 3;
        overflow: hidden;
    }

    .gallery-image img {
        width: 100%;
        height: 100%;

        object-fit: cover;
        object-position: center;
    }

    .gallery-caption {
        padding: 16px;

        text-align: center;
    }

    .gallery-caption h3 {
        margin: 0;

        font-size: 1.12rem;
    }

    .project-contact {
        padding: 42px 0;
    }

    .project-contact-inner {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 21px;

        text-align: center;
    }

    .project-contact h2 {
        font-size: 1.8rem;
    }

    .project-contact p {
        margin-right: auto;
        margin-left: auto;

        font-size: 0.9rem;
    }

    .contact-button {
        width: 100%;
        max-width: 280px;
        min-height: 48px;

        padding: 11px 18px;

        font-size: 0.88rem;
    }

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

    .contact-section {
        padding: 20px 0 13px;
    }

    .contact-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .contact-info,
    .contact-form-box {
        padding: 18px 14px;

        border-radius: 10px;
    }

    .contact-info h1,
    .contact-form-box h2 {
        margin-bottom: 15px;

        font-size: 1.55rem;
        line-height: 1.2;
    }

    .info-card {
        margin-bottom: 10px;
        padding: 13px 11px;

        display: flex;
        align-items: flex-start;
        gap: 10px;

        border-radius: 9px;
    }

    .info-card:last-child {
        margin-bottom: 0;
    }

    .info-icon {
        margin-top: 2px;

        font-size: 1.2rem;
        line-height: 1;
    }

    .info-content h3 {
        margin-bottom: 4px;

        font-size: 0.9rem;
        line-height: 1.25;
    }

    .info-content p {
        margin-bottom: 3px;

        font-size: 0.78rem;
        line-height: 1.4;

        overflow-wrap: anywhere;
    }

    .info-content p:last-child {
        margin-bottom: 0;
    }

    .fax-title {
        margin-top: 7px;
    }

    .contact-form {
        gap: 12px;
    }

    .form-group label {
        margin-bottom: 5px;

        font-size: 0.82rem;
        line-height: 1.2;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        min-height: 44px;

        padding: 10px 11px;

        font-size: 0.84rem;

        border-radius: 7px;
    }

    .form-group textarea {
        min-height: 96px;

        resize: vertical;
    }

    .submit-button {
        width: 100%;
        min-height: 48px;

        padding: 11px 16px;

        font-size: 0.86rem;
    }

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

    .map-section {
        padding: 0 0 32px;
    }

    .map-card,
    .map-wrapper {
        width: 100%;
        max-width: 100%;

        overflow: hidden;
    }

    .map-card {
        border-radius: 10px;
    }

    .map-card h2 {
        padding: 17px 12px;

        font-size: 1.45rem;
        line-height: 1.2;
    }

    .map-wrapper {
        height: 245px;
    }

    .map-wrapper iframe {
        width: 100%;
        height: 100%;

        display: block;

        border: 0;
    }

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

    .site-footer {
        padding: 24px 14px;
    }

    .site-footer p {
        font-size: 0.8rem;
        line-height: 1.5;
    }

    .footer-contact {
        margin-top: 10px;

        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;

        font-size: 0.8rem;
    }

    .footer-contact a {
        min-height: 44px;

        padding: 8px 5px;

        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .footer-contact span {
        display: none;
    }
}

/* ==================================================
   KÜÇÜK TELEFONLAR
================================================== */

@media screen and (max-width: 520px) {

    .container,
    .section-container {
        width: calc(100% - 24px);
    }

    /* ÜST MENÜ */

    .navbar {
        min-height: 74px;

        padding: 8px 10px;
    }

    .logo {
        max-width: calc(100% - 96px);

        gap: 1px;
    }

    .logo img {
        width: 44px;
        height: 44px;
    }

    .logo-text {
        width: 145px;
    }

    .company-name {
        font-size: 1.32rem;
    }

    .company-subtitle {
        margin-top: 4px;

        font-size: 0.49rem;
        letter-spacing: -0.018rem;
    }

    .menu-toggle {
        right: 10px;

        width: 44px;
        height: 44px;
    }

    .nav-links {
        width: min(88vw, 310px);

        padding: 90px 14px 20px;
    }

    .nav-links a {
        min-height: 48px;

        padding: 12px;

        font-size: 0.86rem;
    }

    /* SAYFA BAŞLIKLARI */

    .page-header {
        padding: 38px 16px;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .page-header p {
        font-size: 0.82rem;
    }

    /* HERO */

    .hero {
        min-height: 480px;
    }

    .hero-content {
        width: calc(100% - 26px);

        padding: 34px 0;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 0.86rem;
    }

    .hero-button {
        min-height: 48px;

        font-size: 0.84rem;
    }

    /* ANA SAYFA */

    .home-services,
    .home-about,
    .featured-projects,
    .references-section {
        padding: 38px 0;
    }

    .home-section-heading h2,
    .home-about-content h2,
    .home-contact h2 {
        font-size: 1.7rem;
    }

    .home-section-heading p {
        font-size: 0.82rem;
    }

    .home-about-image > img,
    .home-about-image img {
        height: 225px;
    }

    .references-container {
        grid-template-columns: 1fr;
    }

    .reference-item {
        min-height: 105px;
    }

    .reference-item img {
        max-width: 150px;
        height: 65px;
    }

    /* DİĞER SAYFALAR */

    .about-content-section,
    .services-section,
    .working-process,
    .projects-section {
        padding: 38px 0;
    }

    .about-text h2,
    .section-title,
    .stats-inner h2,
    .services-intro h2,
    .process-heading h2,
    .projects-intro h2 {
        font-size: 1.7rem;
    }

    .about-text p,
    .services-intro p,
    .process-heading p,
    .projects-intro p {
        font-size: 0.84rem;
    }

    .value-card,
    .service-card,
    .process-item {
        padding: 20px 16px;
    }

    .stats {
        padding: 40px 0;
    }

    /* İLETİŞİM */

    .contact-section {
        padding: 15px 0 10px;
    }

    .contact-grid {
        gap: 12px;
    }

    .contact-info,
    .contact-form-box {
        padding: 15px 12px;
    }

    .contact-info h1,
    .contact-form-box h2 {
        margin-bottom: 12px;

        font-size: 1.4rem;
    }

    .info-card {
        margin-bottom: 8px;
        padding: 11px 10px;

        gap: 8px;
    }

    .info-icon {
        font-size: 1.08rem;
    }

    .info-content h3 {
        margin-bottom: 3px;

        font-size: 0.84rem;
    }

    .info-content p {
        margin-bottom: 2px;

        font-size: 0.73rem;
        line-height: 1.35;
    }

    .form-group input,
    .form-group select {
        min-height: 44px;

        padding: 9px 10px;

        font-size: 0.8rem;
    }

    .form-group textarea {
        min-height: 88px;

        padding: 9px 10px;

        font-size: 0.8rem;
    }

    .submit-button {
        min-height: 48px;

        font-size: 0.82rem;
    }

    .map-section {
        padding-bottom: 26px;
    }

    .map-card h2 {
        padding: 14px 10px;

        font-size: 1.3rem;
    }

    .map-wrapper {
        height: 220px;
    }
}

/* ==================================================
   ÇOK KÜÇÜK TELEFONLAR
================================================== */

@media screen and (max-width: 360px) {

    .logo img {
        width: 40px;
        height: 40px;
    }

    .logo-text {
        width: 132px;
    }

    .company-name {
        font-size: 1.2rem;
    }

    .company-subtitle {
        font-size: 0.44rem;
    }

    .hero-content h1 {
        font-size: 1.85rem;
    }

    .page-header h1 {
        font-size: 1.7rem;
    }
}

/* ==================================================
   HAREKET AZALTMA
================================================== */

@media screen and (max-width: 768px) and
       (prefers-reduced-motion: reduce) {

    .menu-toggle span,
    .nav-links,
    .menu-overlay {
        transition: none;
    }
}