/* =========================================================
   ERZURUM UÇAK KARGO
   DOSYA: css/erzurum.css
   ========================================================= */


/* =========================================================
   1. RESET
   ========================================================= */

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.65;
    color: #1f2937;
    background: #ffffff;
    overflow-x: hidden;
}

body,
button,
input,
textarea,
select {
    font-family: inherit;
}

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

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

button,
input,
textarea,
select {
    font-size: 16px;
}

button {
    cursor: pointer;
}

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

p {
    margin-top: 0;
}

h1,
h2,
h3,
h4,
p {
    overflow-wrap: break-word;
}


/* =========================================================
   2. GENEL CONTAINER
   ========================================================= */

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

.section {
    padding: 90px 0;
}

.section-gray {
    background: #f5f7fa;
}


/* =========================================================
   3. HEADER
   ========================================================= */

.site-header {
    position: relative;
    z-index: 1000;
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #e8edf2;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.05);
}

.header-container {
    width: min(1360px, calc(100% - 40px));
    min-height: 82px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 25px;
}

.site-logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    max-width: 220px;
}

.site-logo img {
    width: 190px;
    max-height: 58px;
    object-fit: contain;
}


/* =========================================================
   4. MASAÜSTÜ MENÜ
   ========================================================= */

.desktop-menu {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.desktop-menu > a,
.dropdown-button {
    border: 0;
    background: transparent;
    color: #26323f;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    padding: 28px 11px;
    transition: 0.25s ease;
}

.desktop-menu > a:hover,
.dropdown-button:hover {
    color: #d71920;
}

.menu-dropdown {
    position: relative;
}

.dropdown-button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.dropdown-button span {
    font-size: 16px;
    line-height: 1;
    transition: transform 0.25s ease;
}

.menu-dropdown.open .dropdown-button span {
    transform: rotate(180deg);
}


/* =========================================================
   5. DROPDOWN MENÜ
   ========================================================= */

.dropdown-menu {
    position: absolute;
    top: calc(100% - 4px);
    left: 0;
    z-index: 1001;

    width: 245px;
    padding: 8px;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);

    background: #ffffff;
    border: 1px solid #e7ebef;
    border-radius: 10px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.14);

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

.menu-dropdown:hover .dropdown-menu,
.menu-dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 11px 13px;
    color: #344150;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 600;
    transition: 0.2s ease;
}

.dropdown-menu a:hover,
.dropdown-menu a.active {
    color: #ffffff;
    background: #d71920;
}

.city-menu {
    width: 270px;
}


/* =========================================================
   6. HEADER ACTIONS
   ========================================================= */

.header-actions {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-phone {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
    white-space: nowrap;
}

.phone-label {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.8px;
    color: #8a96a3;
}

.header-phone strong {
    font-size: 15px;
    color: #1f2937;
}

.header-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 43px;
    padding: 0 17px;
    border-radius: 7px;
    background: #25d366;
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
}


.mobile-menu-button {
    display: none;
    width: 46px;
    height: 42px;
    margin-left: auto;
    padding: 8px;
    border: 1px solid #dce2e8;
    border-radius: 7px;
    background: #ffffff;
}

.mobile-menu-button span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    background: #1f2937;
    transition: 0.25s ease;
}

.mobile-menu-button.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-button.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-button.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
    display: none;
}


/* MOBİL */

@media (max-width: 900px) {

    .desktop-menu,
    .header-actions {
        display: none;
    }

    .mobile-menu-button {
        display: block;
    }

    .mobile-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 9999;

        display: block;

        max-height: 0;
        overflow: hidden;

        background: #ffffff;
        border-top: 1px solid #e8edf2;

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

        transition: max-height 0.35s ease;
    }

    .mobile-menu.active {
        max-height: 800px;
    }

    .mobile-menu a {
        display: block;
        padding: 15px 20px;

        border-bottom: 1px solid #eef1f4;

        color: #293541;

        font-size: 14px;
        font-weight: 700;
    }

    .mobile-menu a:hover {
        color: #d71920;
        background: #fafafa;
    }

    .mobile-menu .mobile-call {
        color: #ffffff;
        background: #d71920;
        text-align: center;
    }

}

/* =========================================================
   8. HERO
   ========================================================= */

.erzurum-hero {
    position: relative;
    isolation: isolate;
    min-height: 620px;
    display: flex;
    align-items: center;

    background-image:
        url("../images/erzurum-ucak-kargo-banner.webp");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -1;

    background:
        linear-gradient(
            90deg,
            rgba(9, 20, 35, 0.94) 0%,
            rgba(9, 20, 35, 0.78) 45%,
            rgba(9, 20, 35, 0.38) 100%
        );
}

.hero-content {
    width: min(760px, 100%);
    padding: 85px 0;
    color: #ffffff;
}

.hero-eyebrow {
    display: inline-block;
    margin-bottom: 16px;
    padding: 7px 13px;

    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;

    background: rgba(255, 255, 255, 0.08);

    color: #ffffff;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
}

.erzurum-hero h1 {
    max-width: 750px;
    margin: 0 0 20px;

    font-size: clamp(42px, 6vw, 72px);
    line-height: 1.08;
    letter-spacing: -1.5px;
}

.erzurum-hero p {
    max-width: 700px;
    margin-bottom: 30px;

    color: rgba(255, 255, 255, 0.88);

    font-size: 18px;
    line-height: 1.75;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;

    min-height: 52px;
    padding: 0 24px;

    border-radius: 7px;

    font-size: 14px;
    font-weight: 800;

    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: #d71920;
    color: #ffffff;
}

.btn-secondary {
    background: #ffffff;
    color: #1d2935;
}

.hero-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;

    margin-top: 48px;
}

.hero-info-item {
    min-width: 0;
    padding: 16px;

    border-left: 3px solid #d71920;
    background: rgba(255, 255, 255, 0.08);
}

.hero-info-item strong,
.hero-info-item span {
    display: block;
}

.hero-info-item strong {
    margin-bottom: 3px;
    font-size: 14px;
}

.hero-info-item span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
}


/* =========================================================
   9. BREADCRUMB
   ========================================================= */

.breadcrumb-section {
    border-bottom: 1px solid #e8edf2;
    background: #ffffff;
}

.breadcrumb {
    min-height: 60px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;

    color: #6d7885;
    font-size: 13px;
}

.breadcrumb a:hover {
    color: #d71920;
}

.breadcrumb strong {
    color: #26323f;
}


/* =========================================================
   10. GENEL BAŞLIK
   ========================================================= */

.section-tag {
    display: inline-flex;
    align-items: center;

    margin-bottom: 14px;

    color: #d71920;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
}

.section-tag-light {
    color: #ff8b8f;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 50px;
    text-align: center;
}

.section-heading h2,
.intro-text h2,
.process-intro h2,
.quote-content h2,
.bottom-cta h2 {
    margin: 0 0 17px;
    color: #18222d;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.2;
    letter-spacing: -0.7px;
}

.section-heading p {
    margin-bottom: 0;
    color: #647180;
}


/* =========================================================
   11. INTRO
   ========================================================= */

.erzurum-intro {
    background: #ffffff;
}

.intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(320px, 0.75fr);
    gap: 65px;
    align-items: center;
}

.intro-text p {
    color: #5f6c79;
}

.intro-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 13px;
    margin-top: 30px;
}

.intro-list div {
    display: flex;
    gap: 10px;
    align-items: flex-start;

    color: #344150;
    font-size: 14px;
    font-weight: 700;
}

.intro-list span {
    color: #d71920;
    font-weight: 900;
}

.intro-card {
    padding: 38px;

    border-radius: 16px;
    background:
        linear-gradient(
            145deg,
            #172635,
            #0f1923
        );

    box-shadow:
        0 25px 55px rgba(15, 23, 42, 0.18);

    color: #ffffff;
}

.card-top > span {
    color: #ff9296;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
}

.card-top h3 {
    margin: 12px 0;
    font-size: 29px;
    line-height: 1.25;
}

.card-top p {
    color: rgba(255, 255, 255, 0.72);
}

.quick-contact {
    display: flex;
    flex-direction: column;
    gap: 18px;

    margin-top: 30px;
    padding-top: 25px;

    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.quick-contact small {
    display: block;
    margin-bottom: 5px;

    color: rgba(255, 255, 255, 0.55);

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
}

.quick-contact > div a {
    color: #ffffff;
    font-size: 23px;
    font-weight: 800;
}

.quick-whatsapp {
    display: flex;
    justify-content: center;
    align-items: center;

    min-height: 49px;

    border-radius: 7px;

    background: #25d366;
    color: #ffffff;

    font-size: 14px;
    font-weight: 800;
}


/* =========================================================
   12. HİZMET KARTLARI
   ========================================================= */

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

.service-card {
    min-width: 0;
    padding: 30px;

    border: 1px solid #e5eaf0;
    border-radius: 12px;

    background: #ffffff;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: #f2c5c6;
    box-shadow: 0 18px 35px rgba(15, 23, 42, 0.08);
}

.service-icon {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 50px;
    height: 50px;
    margin-bottom: 22px;

    border-radius: 8px;

    background: #fff0f0;
    color: #d71920;

    font-size: 14px;
    font-weight: 900;
}

.service-card h3 {
    margin: 0 0 10px;
    color: #202b36;
    font-size: 21px;
}

.service-card p {
    margin-bottom: 0;
    color: #667381;
    font-size: 14px;
}


/* =========================================================
   13. GÖNDERİ SÜRECİ
   ========================================================= */

.process-section {
    background: #132230;
    color: #ffffff;
}

.process-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 80px;
    align-items: start;
}

.process-intro {
    position: sticky;
    top: 30px;
}

.process-intro h2 {
    color: #ffffff;
}

.process-intro p {
    color: rgba(255, 255, 255, 0.7);
}

.process-steps {
    display: grid;
    gap: 1px;

    overflow: hidden;

    border-radius: 14px;

    background: rgba(255, 255, 255, 0.1);
}

.process-step {
    display: grid;
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 22px;

    padding: 30px;

    background: #1a2c3c;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 54px;
    height: 54px;

    border-radius: 50%;

    background: #d71920;
    color: #ffffff;

    font-size: 14px;
    font-weight: 900;
}

.process-step h3 {
    margin: 3px 0 7px;
    color: #ffffff;
    font-size: 20px;
}

.process-step p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
}


/* =========================================================
   14. AVANTAJLAR
   ========================================================= */

.advantages-section {
    background: #ffffff;
}

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

.advantage-card {
    position: relative;

    min-width: 0;
    padding: 30px;

    border-top: 3px solid #d71920;

    background: #f6f8fa;
}

.advantage-number {
    margin-bottom: 30px;

    color: #d71920;

    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1px;
}

.advantage-card h3 {
    margin: 0 0 10px;
    color: #202b36;
    font-size: 20px;
    line-height: 1.35;
}

.advantage-card p {
    margin-bottom: 0;
    color: #667381;
    font-size: 14px;
}


/* =========================================================
   15. TEKLİF FORMU
   ========================================================= */

.quote-section {
    background: #f3f5f7;
}

.quote-wrapper {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 50px;

    padding: 55px;

    border-radius: 18px;

    background: #ffffff;

    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
}

.quote-content {
    padding: 25px 0;
}

.quote-content p {
    color: #657281;
}

.quote-contact-box {
    margin-top: 35px;
    padding: 25px;

    border-left: 4px solid #d71920;

    background: #f6f8fa;
}

.quote-contact-box span {
    display: block;
    margin-bottom: 6px;

    color: #7a8693;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
}

.quote-contact-box a {
    display: inline-block;
    margin-bottom: 8px;

    color: #d71920;

    font-size: 27px;
    font-weight: 900;
}

.quote-contact-box p {
    margin-bottom: 0;
    font-size: 13px;
}

.quote-form-box {
    padding: 35px;

    border-radius: 12px;

    background: #172635;
    color: #ffffff;
}


.quote-form-box h3 {
    margin: 0 0 7px;
    font-size: 26px;
}

.quote-form-box > p {
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
}

.form-group {
    min-width: 0;
    margin-bottom: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;

    color: rgba(255, 255, 255, 0.8);

    font-size: 12px;
    font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 14px;

    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 6px;

    outline: none;

    background: rgba(255, 255, 255, 0.07);
    color: #ffffff;

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

.form-group textarea {
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.form-group select option {
    color: #1f2937;
    background: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #d71920;
    background: rgba(255, 255, 255, 0.1);
}

.quote-submit {
    width: 100%;
    min-height: 52px;

    border: 0;
    border-radius: 7px;

    background: #25d366;
    color: #ffffff;

    font-size: 14px;
    font-weight: 900;

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

.quote-submit:hover {
    transform: translateY(-2px);
    opacity: 0.92;
}


/* =========================================================
   16. MÜŞTERİ YORUMLARI
   ========================================================= */

.reviews-section {
    background: #ffffff;
}

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

.review-card {
    min-width: 0;
    padding: 30px;

    border: 1px solid #e7ebef;
    border-radius: 12px;

    background: #ffffff;
}

.review-stars {
    margin-bottom: 18px;
    color: #e5a900;
    letter-spacing: 2px;
    font-size: 16px;
}

.review-card > p {
    min-height: 120px;
    margin-bottom: 25px;

    color: #586574;

    font-size: 14px;
}

.review-person {
    padding-top: 17px;
    border-top: 1px solid #edf0f3;
}

.review-person strong,
.review-person span {
    display: block;
}

.review-person strong {
    color: #202b36;
    font-size: 14px;
}

.review-person span {
    margin-top: 2px;
    color: #8b96a2;
    font-size: 12px;
}


/* =========================================================
   17. SSS
   ========================================================= */

.faq-section {
    background: #f5f7fa;
}

.faq-container {
    max-width: 920px;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-list details {
    border: 1px solid #e3e8ed;
    border-radius: 8px;
    background: #ffffff;
    overflow: hidden;
}

.faq-list summary {
    position: relative;

    padding: 21px 55px 21px 22px;

    color: #26323f;

    cursor: pointer;

    font-size: 15px;
    font-weight: 800;

    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    content: "+";

    position: absolute;
    top: 50%;
    right: 20px;

    transform: translateY(-50%);

    color: #d71920;

    font-size: 24px;
    font-weight: 400;
}

.faq-list details[open] summary::after {
    content: "−";
}

.faq-list details p {
    margin: 0;
    padding: 0 22px 22px;

    color: #667381;

    font-size: 14px;
}


/* =========================================================
   18. ALT CTA
   ========================================================= */

.bottom-cta {
    padding: 75px 0;
    background: #d71920;
    color: #ffffff;
}

.bottom-cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.bottom-cta-content > div:first-child {
    max-width: 700px;
}

.bottom-cta span {
    display: block;
    margin-bottom: 10px;

    color: rgba(255, 255, 255, 0.72);

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
}

.bottom-cta h2 {
    margin-bottom: 12px;
    color: #ffffff;
}

.bottom-cta p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.82);
}

.bottom-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.bottom-call,
.bottom-wa {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 52px;
    padding: 0 22px;

    border-radius: 7px;

    font-size: 14px;
    font-weight: 900;

    white-space: nowrap;
}

.bottom-call {
    background: #ffffff;
    color: #d71920;
}

.bottom-wa {
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #ffffff;
}


/* =========================================================
   19. FOOTER
   ========================================================= */

.site-footer {
    padding: 75px 0 0;
    background: #101b25;
    color: #ffffff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.9fr 1fr;
    gap: 50px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 18px;

    color: #ffffff;

    font-size: 20px;
    font-weight: 900;
    letter-spacing: 0.5px;
}

.footer-about p {
    max-width: 360px;
    margin-bottom: 0;

    color: rgba(255, 255, 255, 0.62);

    font-size: 14px;
}

.footer-column h3 {
    margin: 0 0 20px;
    color: #ffffff;
    font-size: 16px;
}

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

.footer-column li a {
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
    transition: color 0.2s ease;
}

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

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

.footer-contact > a {
    margin-bottom: 10px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
}

.footer-contact > a:first-of-type {
    font-size: 19px;
}

.footer-contact p {
    margin-top: 8px;
    margin-bottom: 0;

    color: rgba(255, 255, 255, 0.58);
    font-size: 13px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;

    margin-top: 60px;
    padding: 23px 0;

    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.48);
    font-size: 12px;
}

.footer-bottom div {
    display: flex;
    gap: 20px;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
}


/* =========================================================
   20. SABİT WHATSAPP
   ========================================================= */

.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 999;

    display: inline-flex;
    align-items: center;
    gap: 9px;

    min-height: 52px;
    padding: 0 19px;

    border-radius: 50px;

    background: #25d366;
    color: #ffffff;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.2);

    font-size: 13px;
    font-weight: 900;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.floating-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.25);
}

.floating-wa-icon {
    font-size: 20px;
    line-height: 1;
}


/* =========================================================
   21. BÜYÜK EKRAN DÜZENLEMELERİ
   ========================================================= */

@media (max-width: 1250px) {

    .header-container {
        gap: 14px;
    }

    .desktop-menu {
        gap: 0;
    }

    .desktop-menu > a,
    .dropdown-button {
        padding-right: 8px;
        padding-left: 8px;
        font-size: 13px;
    }

    .header-whatsapp {
        padding: 0 13px;
    }

    .site-logo img {
        width: 165px;
    }

}


@media (max-width: 1050px) {

    .desktop-menu > a,
    .dropdown-button {
        font-size: 12px;
    }

    .header-phone strong {
        font-size: 13px;
    }

    .header-whatsapp {
        font-size: 12px;
    }

}


/* =========================================================
   22. TABLET
   ========================================================= */

@media (max-width: 900px) {

    html {
        scroll-padding-top: 70px;
    }

    .section {
        padding: 70px 0;
    }

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

    .desktop-menu,
    .header-actions {
        display: none;
    }

    .mobile-menu-button {
        display: block;
    }

    .mobile-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;

        z-index: 999;

        max-height: 0;
        overflow: hidden;

        background: #ffffff;
        border-top: 1px solid #e8edf2;

        box-shadow:
            0 15px 30px rgba(15, 23, 42, 0.08);

        transition: max-height 0.35s ease;
    }

    .mobile-menu.active {
        max-height: 700px;
    }

    .mobile-menu a {
        display: block;
        padding: 14px 20px;

        border-bottom: 1px solid #eef1f4;

        color: #293541;

        font-size: 14px;
        font-weight: 700;
    }

    .mobile-menu a:hover {
        color: #d71920;
        background: #fafafa;
    }

    .mobile-menu .mobile-call {
        color: #ffffff;
        background: #d71920;
        text-align: center;
    }

    .erzurum-hero {
        min-height: 570px;
    }

    .hero-content {
        padding: 75px 0;
    }

    .hero-info {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .intro-grid,
    .process-layout,
    .quote-wrapper {
        grid-template-columns: 1fr;
    }

    .process-intro {
        position: static;
    }

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

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

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

    .quote-wrapper {
        padding: 35px;
        gap: 25px;
    }

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

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

}


/* =========================================================
   23. MOBİL
   ========================================================= */

@media (max-width: 650px) {

    .container,
    .header-container {
        width: min(100% - 28px, 1180px);
    }

    .section {
        padding: 58px 0;
    }

    .site-logo img {
        width: 150px;
        max-height: 48px;
    }

    .erzurum-hero {
        min-height: auto;
        background-position: center;
    }

    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(9, 20, 35, 0.94),
                rgba(9, 20, 35, 0.72)
            );
    }

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

    .hero-eyebrow {
        font-size: 10px;
    }

    .erzurum-hero h1 {
        font-size: 42px;
        letter-spacing: -1px;
    }

    .erzurum-hero p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-info {
        margin-top: 32px;
    }

    .section-heading {
        margin-bottom: 35px;
        text-align: left;
    }

    .section-heading h2,
    .intro-text h2,
    .process-intro h2,
    .quote-content h2,
    .bottom-cta h2 {
        font-size: 31px;
    }

    .intro-grid {
        gap: 35px;
    }

    .intro-list {
        grid-template-columns: 1fr;
    }

    .intro-card {
        padding: 27px 22px;
    }

    .card-top h3 {
        font-size: 25px;
    }

    .service-grid,
    .advantages-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .service-card,
    .advantage-card,
    .review-card {
        padding: 25px;
    }

    .process-layout {
        gap: 40px;
    }

    .process-step {
        grid-template-columns: 50px minmax(0, 1fr);
        gap: 16px;
        padding: 23px;
    }

    .step-number {
        width: 45px;
        height: 45px;
        font-size: 12px;
    }

    .process-step h3 {
        margin-top: 0;
        font-size: 18px;
    }

    .quote-wrapper {
        padding: 20px;
        border-radius: 10px;
    }

    .quote-content {
        padding: 15px 5px;
    }

    .quote-form-box {
        padding: 25px 18px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .review-card > p {
        min-height: auto;
    }

    .faq-list summary {
        padding: 18px 48px 18px 17px;
        font-size: 14px;
    }

    .faq-list details p {
        padding: 0 17px 18px;
        font-size: 13px;
    }

    .bottom-cta {
        padding: 58px 0;
    }

    .bottom-cta-buttons {
        width: 100%;
        flex-direction: column;
    }

    .bottom-call,
    .bottom-wa {
        width: 100%;
    }

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

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

    .floating-whatsapp {
        right: 14px;
        bottom: 14px;

        width: 54px;
        height: 54px;

        justify-content: center;

        padding: 0;

        border-radius: 50%;
    }

    .floating-whatsapp > span:last-child {
        display: none;
    }

    .floating-wa-icon {
        font-size: 24px;
    }

}


/* =========================================================
   24. KÜÇÜK MOBİL
   ========================================================= */

@media (max-width: 390px) {

    .erzurum-hero h1 {
        font-size: 36px;
    }

    .site-logo img {
        width: 135px;
    }

    .section-heading h2,
    .intro-text h2,
    .process-intro h2,
    .quote-content h2,
    .bottom-cta h2 {
        font-size: 28px;
    }

}


/* =========================================================
   25. ERİŞİLEBİLİRLİK
   ========================================================= */

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible {
    outline: 3px solid rgba(215, 25, 32, 0.35);
    outline-offset: 3px;
}