/* ================================
   KADAKALOĞLU TAŞIMACILIK
   GLOBAL STYLE
================================ */

:root {
    --bg: #0b0f14;
    --bg-soft: #121820;
    --bg-card: #161d26;
    --bg-card-2: #1b2430;

    --text: #ffffff;
    --text-soft: #b8c0cc;
    --text-muted: #7f8997;

    --accent: #ff7a00;
    --accent-hover: #e86f00;
    --accent-soft: rgba(255, 122, 0, 0.12);

    --border: rgba(255, 255, 255, 0.08);
    --border-strong: rgba(255, 255, 255, 0.14);

    --container: 1200px;

    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 26px;

    --shadow:
        0 20px 60px rgba(0, 0, 0, 0.28);
}


/* ================================
   RESET
================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
textarea {
    font: inherit;
}

button {
    border: 0;
    background: none;
}

.container {
    width: min(92%, var(--container));
    margin-inline: auto;
}


/* ================================
   TYPOGRAPHY
================================ */

h1,
h2,
h3,
.logo-name {
    font-family: "Manrope", sans-serif;
}

h1,
h2,
h3 {
    line-height: 1.1;
}

h1 span,
h2 span {
    color: var(--accent);
}

.section-label {
    display: inline-block;
    margin-bottom: 16px;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.18em;

    color: var(--accent);
}

.section-header {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    align-items: flex-end;

    margin-bottom: 48px;
}

.section-header > div {
    max-width: 700px;
}

.section-header h2,
.intro-left h2,
.about-content h2,
.process-heading h2,
.contact-cta h2 {
    font-size: clamp(34px, 5vw, 58px);
}

.section-header > p,
.intro-right,
.about-content > p,
.contact-cta p {
    color: var(--text-soft);
}


/* ================================
   BUTTONS
================================ */

.btn {
    min-height: 54px;
    padding: 0 24px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 999px;

    font-size: 15px;
    font-weight: 800;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--accent);
    color: #111;
}

.btn-primary:hover {
    background: var(--accent-hover);
}

.btn-outline {
    border: 1px solid var(--border-strong);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
}

.btn-outline:hover {
    border-color: var(--accent);
    background: var(--accent-soft);
}

.btn-dark {
    background: #10151c;
    border: 1px solid var(--border);
}

.btn-light {
    background: #fff;
    color: #111;
}


/* ================================
   HEADER
================================ */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;

    z-index: 1000;

    background: rgba(8, 11, 15, 0.88);
    backdrop-filter: blur(18px);

    border-bottom: 1px solid var(--border);
}

.nav-container {
    min-height: 82px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.logo {
    display: flex;
    flex-direction: column;

    line-height: 1;
}

.logo-name {
    font-size: 19px;
    font-weight: 800;
    letter-spacing: 0.06em;
}

.logo-text {
    margin-top: 6px;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.34em;

    color: var(--accent);
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.desktop-nav a {
    position: relative;

    padding: 30px 0;

    font-size: 14px;
    font-weight: 650;

    color: #d9dee6;

    transition: color 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
    color: #fff;
}

.desktop-nav a::after {
    content: "";

    position: absolute;
    bottom: 20px;
    left: 0;

    width: 0;
    height: 2px;

    background: var(--accent);

    transition: width 0.25s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
    width: 100%;
}

.header-phone {
    display: flex;
    flex-direction: column;
    align-items: flex-end;

    line-height: 1.2;
}

.phone-small {
    font-size: 10px;
    color: var(--text-muted);
}

.phone-number {
    margin-top: 5px;

    font-size: 14px;
    font-weight: 800;

    color: var(--text);
}

.menu-toggle {
    width: 44px;
    height: 44px;

    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 6px;

    cursor: pointer;

    border-radius: 12px;
    border: 1px solid var(--border);

    background: rgba(255, 255, 255, 0.03);

    position: relative;
    z-index: 1100;
}

.menu-toggle span {
    width: 21px;
    height: 2px;

    background: #fff;

    border-radius: 999px;

    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}


/* ================================
   MOBILE MENU
================================ */

.mobile-menu {
    max-height: 0;
    overflow: hidden;

    background: #0e1319;

    border-top: 1px solid transparent;

    transition:
        max-height 0.35s ease,
        border-color 0.3s ease;
}

.mobile-menu.active {
    max-height: 650px;
    border-top-color: var(--border);
}

.mobile-menu-inner {
    width: min(92%, var(--container));
    margin-inline: auto;

    padding: 20px 0 28px;

    display: flex;
    flex-direction: column;
}

.mobile-menu-inner > a:not(.mobile-whatsapp) {
    padding: 16px 0;

    border-bottom: 1px solid var(--border);

    font-size: 16px;
    font-weight: 700;
}

.mobile-menu-inner > a.active {
    color: var(--accent);
}

.mobile-contact {
    margin-top: 22px;
    padding: 18px;

    display: flex;
    flex-direction: column;
    gap: 4px;

    background: var(--bg-card);
    border: 1px solid var(--border);

    border-radius: var(--radius-md);
}

.mobile-contact span {
    font-size: 12px;
    color: var(--text-muted);
}

.mobile-contact a {
    font-size: 20px;
    font-weight: 800;
}

.mobile-whatsapp {
    margin-top: 12px;

    min-height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--accent);
    color: #111;

    border-radius: 999px;

    font-weight: 800;
}


/* ================================
   HERO
================================ */

.hero {
    min-height: 880px;

    position: relative;

    display: flex;
    align-items: center;

    padding-top: 82px;

    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;

    background:
        url("images/hero.png")
    
        center center / cover no-repeat;

    transform: scale(1.03);
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(7, 10, 14, 0.98) 0%,
            rgba(7, 10, 14, 0.89) 42%,
            rgba(7, 10, 14, 0.55) 72%,
            rgba(7, 10, 14, 0.72) 100%
        );
}

.hero-container {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);

    align-items: center;

    gap: 70px;

    padding-top: 90px;
    padding-bottom: 140px;
}

.hero-content {
    max-width: 800px;
}

.hero-badge {
    width: fit-content;

    display: flex;
    align-items: center;
    gap: 10px;

    padding: 10px 14px;

    margin-bottom: 26px;

    border-radius: 999px;
    border: 1px solid rgba(255, 122, 0, 0.25);

    background: rgba(255, 122, 0, 0.08);

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.13em;

    color: #ffd1a5;
}

.badge-dot {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: var(--accent);

    box-shadow: 0 0 18px rgba(255, 122, 0, 0.7);
}

.hero h1 {
    max-width: 850px;

    font-size: clamp(52px, 7vw, 94px);
    letter-spacing: -0.055em;
}

.hero-description {
    max-width: 700px;

    margin-top: 28px;

    font-size: 18px;
    line-height: 1.75;

    color: #c0c7d0;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;

    margin-top: 34px;
}

.hero-info {
    margin-top: 50px;

    display: flex;
    gap: 34px;

    flex-wrap: wrap;
}

.hero-info-item {
    min-width: 120px;

    display: flex;
    flex-direction: column;
}

.hero-info-item strong {
    font-size: 17px;
}

.hero-info-item span {
    margin-top: 3px;

    font-size: 12px;
    color: var(--text-muted);
}

.hero-side-card {
    padding: 34px;

    border: 1px solid var(--border-strong);
    border-radius: var(--radius-lg);

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.08),
            rgba(255, 255, 255, 0.025)
        );

    backdrop-filter: blur(20px);

    box-shadow: var(--shadow);
}

.side-card-label {
    color: var(--accent);

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.hero-side-card h2 {
    margin-top: 16px;

    font-size: 32px;
}

.hero-side-card p {
    margin-top: 16px;

    color: var(--text-soft);
}

.side-card-services {
    margin-top: 24px;

    display: flex;
    flex-wrap: wrap;

    gap: 8px;
}

.side-card-services span {
    padding: 8px 12px;

    border-radius: 999px;
    border: 1px solid var(--border);

    background: rgba(255, 255, 255, 0.04);

    font-size: 12px;
    color: #dce2ea;
}

.hero-bottom {
    position: absolute;
    z-index: 3;

    left: 0;
    bottom: 0;

    width: 100%;

    border-top: 1px solid var(--border);

    background: rgba(8, 11, 15, 0.88);
    backdrop-filter: blur(15px);
}

.hero-bottom-inner {
    min-height: 72px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    overflow: hidden;
}

.hero-bottom-inner span {
    white-space: nowrap;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.15em;

    color: #9ca6b3;
}

.hero-bottom-inner i {
    width: 4px;
    height: 4px;

    flex: 0 0 auto;

    border-radius: 50%;

    background: var(--accent);
}


/* ================================
   INTRO
================================ */

.intro-section {
    padding: 115px 0;

    background: #0b0f14;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 80px;
}

.intro-left h2 {
    max-width: 600px;
}

.intro-right {
    font-size: 16px;
    line-height: 1.85;
}

.intro-right p + p {
    margin-top: 20px;
}


/* ================================
   SERVICES
================================ */

.services-section {
    padding: 110px 0;

    background: var(--bg-soft);
}

.services-grid {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 18px;
}

.service-card {
    min-height: 280px;

    padding: 32px;

    position: relative;

    border: 1px solid var(--border);
    border-radius: var(--radius-lg);

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.045),
            rgba(255, 255, 255, 0.015)
        );

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease;
}

.service-card:hover {
    transform: translateY(-5px);

    border-color: rgba(255, 122, 0, 0.35);

    background:
        linear-gradient(
            145deg,
            rgba(255, 122, 0, 0.09),
            rgba(255, 255, 255, 0.02)
        );
}

.service-card.featured {
    border-color: rgba(255, 122, 0, 0.25);
}

.service-top {
    display: flex;
    align-items: center;

    gap: 14px;

    margin-bottom: 36px;
}

.service-number {
    font-size: 12px;
    font-weight: 900;

    color: var(--accent);
}

.service-line {
    flex: 1;

    height: 1px;

    background: var(--border);
}

.service-card h3 {
    font-size: 25px;
}

.service-card p {
    margin-top: 16px;

    max-width: 540px;

    color: var(--text-soft);
}

.service-card > a {
    margin-top: 26px;

    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: #fff;

    font-weight: 750;
}

.service-card > a span {
    color: var(--accent);

    transition: transform 0.2s ease;
}

.service-card:hover > a span {
    transform: translateX(4px);
}


/* ================================
   ABOUT
================================ */

.about-section {
    padding: 120px 0;

    background: #0b0f14;
}

.about-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 90px;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 650px;

    object-fit: cover;

    border-radius: var(--radius-lg);

    border: 1px solid var(--border);
}

.image-badge {
    position: absolute;

    right: -25px;
    bottom: 40px;

    min-width: 160px;

    padding: 24px;

    display: flex;
    flex-direction: column;

    border-radius: var(--radius-md);

    background: var(--accent);

    color: #111;

    box-shadow: var(--shadow);
}

.image-badge strong {
    font-size: 34px;
    line-height: 1;
}

.image-badge span {
    margin-top: 4px;

    font-weight: 800;
}

.about-content > p {
    margin-top: 18px;

    line-height: 1.85;
}

.about-features {
    margin: 34px 0;

    display: flex;
    flex-direction: column;

    gap: 16px;
}

.about-feature {
    padding: 18px;

    display: flex;
    gap: 16px;

    border-radius: var(--radius-md);

    border: 1px solid var(--border);

    background: rgba(255, 255, 255, 0.025);
}

.check {
    width: 36px;
    height: 36px;

    flex: 0 0 36px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--accent-soft);
    color: var(--accent);

    font-weight: 900;
}

.about-feature strong {
    font-size: 15px;
}

.about-feature p {
    margin-top: 3px;

    font-size: 13px;
    color: var(--text-muted);
}


/* ================================
   WHY US
================================ */

.why-section {
    padding: 110px 0;

    background: var(--bg-soft);
}

.section-header.centered {
    max-width: 830px;

    margin-inline: auto;
    margin-bottom: 50px;

    display: block;

    text-align: center;
}

.section-header.centered p {
    max-width: 650px;

    margin: 20px auto 0;
}

.why-grid {
    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 16px;
}

.why-card {
    min-height: 275px;

    padding: 28px;

    border: 1px solid var(--border);
    border-radius: var(--radius-lg);

    background: rgba(255, 255, 255, 0.025);
}

.why-number {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--accent-soft);
    color: var(--accent);

    font-size: 12px;
    font-weight: 900;
}

.why-card h3 {
    margin-top: 48px;

    font-size: 21px;
}

.why-card p {
    margin-top: 13px;

    color: var(--text-soft);

    font-size: 14px;
}


/* ================================
   PROCESS
================================ */

.process-section {
    padding: 120px 0;

    background: #0b0f14;
}

.process-heading {
    max-width: 720px;

    margin-bottom: 48px;
}

.process-grid {
    display: grid;

    grid-template-columns: 1fr auto 1fr auto 1fr;

    align-items: center;

    gap: 22px;
}

.process-card {
    min-height: 260px;

    padding: 30px;

    border-radius: var(--radius-lg);

    border: 1px solid var(--border);

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.045),
            rgba(255, 255, 255, 0.01)
        );
}

.process-number {
    width: fit-content;

    padding: 8px 12px;

    border-radius: 999px;

    background: var(--accent-soft);

    color: var(--accent);

    font-size: 12px;
    font-weight: 900;
}

.process-card h3 {
    margin-top: 50px;

    font-size: 24px;
}

.process-card p {
    margin-top: 14px;

    color: var(--text-soft);
}

.process-arrow {
    font-size: 30px;

    color: var(--accent);
}


/* ================================
   GALLERY
================================ */

.gallery-section {
    padding: 110px 0;

    background: var(--bg-soft);
}

.gallery-link {
    font-weight: 800;

    color: #fff;
}

.gallery-link span {
    color: var(--accent);
}

.gallery-grid {
    display: grid;

    grid-template-columns: 1.5fr 1fr;

    grid-template-rows: 300px 300px;

    gap: 16px;
}

.gallery-item {
    position: relative;

    overflow: hidden;

    border-radius: var(--radius-lg);

    border: 1px solid var(--border);
}

.gallery-item img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.45s ease;
}

.gallery-item:hover img {
    transform: scale(1.04);
}

.gallery-large {
    grid-row: 1 / 3;
}

.gallery-overlay {
    position: absolute;
    inset: 0;

    padding: 28px;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    background:
        linear-gradient(
            180deg,
            transparent 35%,
            rgba(4, 6, 8, 0.9) 100%
        );
}

.gallery-overlay span {
    font-size: 12px;
    color: var(--accent);

    font-weight: 800;
}

.gallery-overlay strong {
    margin-top: 4px;

    font-size: 25px;
}


/* ================================
   EMERGENCY
================================ */

.emergency-section {
    position: relative;

    padding: 100px 0;

    background:
        url("images/acil-yardim.jpg")
        center center / cover no-repeat;

    overflow: hidden;
}

.emergency-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(6, 8, 11, 0.96),
            rgba(6, 8, 11, 0.78)
        );
}

.emergency-content {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 60px;
}

.emergency-content > div:first-child {
    max-width: 700px;
}

.emergency-label {
    display: inline-block;

    margin-bottom: 15px;

    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.18em;

    color: var(--accent);
}

.emergency-content h2 {
    font-size: clamp(38px, 5vw, 66px);
}

.emergency-content p {
    margin-top: 18px;

    color: #c4cbd4;
}

.emergency-actions {
    min-width: 290px;

    display: flex;
    flex-direction: column;

    gap: 12px;
}

.emergency-phone {
    padding: 20px 24px;

    display: flex;
    flex-direction: column;

    border-radius: var(--radius-md);

    background: var(--accent);

    color: #111;
}

.emergency-phone small {
    font-weight: 700;
}

.emergency-phone strong {
    margin-top: 4px;

    font-size: 23px;
}


/* ================================
   CONTACT CTA
================================ */

.contact-cta {
    padding: 100px 0;

    background: #0b0f14;
}

.contact-cta-grid {
    padding: 48px;

    display: grid;

    grid-template-columns: 1fr auto;

    align-items: center;

    gap: 50px;

    border-radius: var(--radius-lg);

    border: 1px solid rgba(255, 122, 0, 0.2);

    background:
        linear-gradient(
            135deg,
            rgba(255, 122, 0, 0.09),
            rgba(255, 255, 255, 0.025)
        );
}

.contact-cta p {
    margin-top: 18px;

    max-width: 690px;
}

.contact-cta-actions {
    display: flex;
    flex-direction: column;

    min-width: 240px;

    gap: 12px;
}


/* ================================
   FOOTER
================================ */

.site-footer {
    background: #080b0f;

    border-top: 1px solid var(--border);
}

.footer-grid {
    padding: 70px 0;

    display: grid;

    grid-template-columns: 1.4fr repeat(3, 1fr);

    gap: 60px;
}

.footer-brand p {
    margin-top: 22px;

    max-width: 310px;

    color: var(--text-muted);
}

.footer-column {
    display: flex;
    flex-direction: column;

    gap: 12px;
}

.footer-column h3 {
    margin-bottom: 6px;

    font-size: 14px;
}

.footer-column a,
.footer-column span {
    font-size: 13px;
    color: var(--text-muted);

    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: var(--accent);
}

.footer-contact a:first-of-type {
    font-size: 18px;
    font-weight: 800;

    color: #fff;
}

.footer-bottom {
    border-top: 1px solid var(--border);
}

.footer-bottom-inner {
    min-height: 74px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.footer-bottom p {
    font-size: 12px;

    color: #6f7885;
}


/* ================================
   MOBILE FIXED ACTIONS
================================ */

.mobile-fixed-actions {
    display: none;
}


/* ================================
   TABLET
================================ */

@media (max-width: 1050px) {

    .desktop-nav {
        gap: 18px;
    }

    .desktop-nav a {
        font-size: 13px;
    }

    .header-phone {
        display: none;
    }

    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero-side-card {
        max-width: 650px;
    }

    .about-grid {
        gap: 55px;
    }

    .why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


/* ================================
   MOBILE / TABLET NAV
================================ */

@media (max-width: 820px) {

    body {
        padding-bottom: 72px;
    }

    .nav-container {
        min-height: 72px;
    }

    .desktop-nav,
    .nav-actions {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .site-header {
        background: rgba(8, 11, 15, 0.96);
    }


    /* HERO */

    .hero {
        min-height: auto;

        padding-top: 72px;
    }

    .hero-bg {
        background-position: 62% center;
    }

    .hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(7, 10, 14, 0.72) 0%,
                rgba(7, 10, 14, 0.92) 45%,
                rgba(7, 10, 14, 1) 100%
            );
    }

    .hero-container {
        padding-top: 100px;
        padding-bottom: 125px;

        gap: 45px;
    }

    .hero-content {
        width: 100%;
    }

    .hero h1 {
        font-size: clamp(46px, 12vw, 70px);
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-side-card {
        display: none;
    }

    .hero-info {
        gap: 24px;
    }

    .hero-bottom-inner {
        justify-content: flex-start;

        overflow-x: auto;

        scrollbar-width: none;
    }

    .hero-bottom-inner::-webkit-scrollbar {
        display: none;
    }


    /* SECTIONS */

    .intro-grid,
    .about-grid,
    .contact-cta-grid {
        grid-template-columns: 1fr;
    }

    .intro-grid,
    .about-grid {
        gap: 45px;
    }

    .section-header {
        display: block;
    }

    .section-header > p {
        margin-top: 20px;
        max-width: 650px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-image img {
        height: 500px;
    }

    .image-badge {
        right: 18px;
        bottom: 18px;
    }

    .process-grid {
        grid-template-columns: 1fr;

        gap: 14px;
    }

    .process-arrow {
        transform: rotate(90deg);

        text-align: center;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .gallery-large {
        grid-row: auto;
    }

    .gallery-item {
        height: 300px;
    }

    .gallery-large {
        height: 450px;
    }

    .emergency-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .emergency-actions {
        width: 100%;
        min-width: 0;
    }

    .contact-cta-grid {
        padding: 34px;
    }

    .contact-cta-actions {
        width: 100%;

        min-width: 0;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;

        gap: 45px;
    }


    /* MOBILE FIXED BOTTOM */

    .mobile-fixed-actions {
        position: fixed;

        left: 0;
        right: 0;
        bottom: 0;

        z-index: 999;

        height: 72px;

        padding: 10px;

        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 8px;

        background: rgba(8, 11, 15, 0.96);

        backdrop-filter: blur(16px);

        border-top: 1px solid var(--border);
    }

    .mobile-fixed-actions a {
        display: flex;
        align-items: center;
        justify-content: center;

        border-radius: 13px;

        font-size: 14px;
        font-weight: 800;
    }

    .mobile-fixed-call {
        background: #fff;
        color: #111;
    }

    .mobile-fixed-whatsapp {
        background: var(--accent);
        color: #111;
    }

}


/* ================================
   SMALL MOBILE
================================ */

@media (max-width: 580px) {

    .container {
        width: min(91%, var(--container));
    }

    .logo-name {
        font-size: 16px;
    }

    .logo-text {
        font-size: 8px;
    }

    .hero-container {
        padding-top: 74px;
        padding-bottom: 118px;
    }

    .hero-badge {
        font-size: 9px;
        letter-spacing: 0.1em;
    }

    .hero h1 {
        font-size: clamp(42px, 13vw, 58px);

        letter-spacing: -0.05em;
    }

    .hero-description {
        margin-top: 22px;

        font-size: 15px;
        line-height: 1.7;
    }

    .hero-buttons {
        display: grid;
        grid-template-columns: 1fr;

        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-info {
        display: grid;

        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 18px;
    }

    .hero-info-item {
        padding: 14px;

        border: 1px solid var(--border);
        border-radius: 14px;

        background: rgba(255, 255, 255, 0.025);
    }

    .hero-bottom-inner {
        min-height: 60px;
    }

    .intro-section,
    .services-section,
    .about-section,
    .why-section,
    .process-section,
    .gallery-section,
    .contact-cta {
        padding: 82px 0;
    }

    .section-header {
        margin-bottom: 34px;
    }

    .section-header h2,
    .intro-left h2,
    .about-content h2,
    .process-heading h2,
    .contact-cta h2 {
        font-size: 36px;
    }

    .service-card {
        min-height: auto;

        padding: 24px;
    }

    .service-top {
        margin-bottom: 28px;
    }

    .service-card h3 {
        font-size: 22px;
    }

    .about-image img {
        height: 390px;
    }

    .image-badge {
        min-width: 130px;

        padding: 18px;
    }

    .image-badge strong {
        font-size: 28px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-card {
        min-height: auto;
    }

    .why-card h3 {
        margin-top: 30px;
    }

    .process-card {
        min-height: auto;

        padding: 24px;
    }

    .process-card h3 {
        margin-top: 34px;
    }

    .gallery-item,
    .gallery-large {
        height: 280px;
    }

    .emergency-section {
        padding: 80px 0;
    }

    .emergency-content h2 {
        font-size: 40px;
    }

    .contact-cta-grid {
        padding: 26px;
    }

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 38px;
    }

    .footer-bottom-inner {
        padding: 20px 0;

        min-height: auto;

        flex-direction: column;
        align-items: flex-start;
    }

}


/* ================================
   VERY SMALL DEVICES
================================ */

@media (max-width: 380px) {

    .hero h1 {
        font-size: 39px;
    }

    .hero-info {
        grid-template-columns: 1fr;
    }

    .mobile-fixed-actions {
        height: 68px;
    }

}
/* ==========================================================
   HİZMETLER SAYFASI
   ========================================================== */


/* ================================
   HİZMETLER HERO
================================ */

.services-page-hero {
    position: relative;
    min-height: 720px;

    display: flex;
    align-items: center;

    padding: 160px 0 100px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 75% 35%,
            rgba(255, 122, 0, 0.12),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #090d12 0%,
            #0d131a 55%,
            #111820 100%
        );

    border-bottom: 1px solid var(--border);
}

.services-page-hero::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    right: -180px;
    top: -180px;

    border-radius: 50%;

    border: 1px solid rgba(255, 122, 0, 0.13);
}

.services-page-hero::after {
    content: "";

    position: absolute;

    width: 700px;
    height: 700px;

    right: -280px;
    top: -280px;

    border-radius: 50%;

    border: 1px solid rgba(255, 255, 255, 0.04);
}

.services-page-hero-inner {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, 1.4fr)
        minmax(320px, 0.6fr);

    align-items: center;

    gap: 90px;
}

.services-page-hero-content {
    max-width: 800px;
}

.services-page-hero-content h1 {
    font-size: clamp(60px, 7vw, 105px);

    line-height: 0.98;

    letter-spacing: -0.055em;
}

.services-page-hero-content h1 span {
    display: block;

    color: var(--accent);
}

.services-page-hero-content > p {
    max-width: 690px;

    margin-top: 30px;

    color: var(--text-soft);

    font-size: 17px;

    line-height: 1.8;
}

.services-page-buttons {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 34px;
}


/* SAĞDAKİ BİLGİ KARTI */

.services-page-hero-info {
    position: relative;

    padding: 36px;

    border-radius: 26px;

    border: 1px solid var(--border-strong);

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.07),
            rgba(255, 255, 255, 0.02)
        );

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.3);
}

.services-page-hero-info > span {
    display: block;

    margin-bottom: 15px;

    color: var(--accent);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 0.16em;
}

.services-page-hero-info > strong {
    display: block;

    font-family: "Manrope", sans-serif;

    font-size: 34px;

    line-height: 1.15;
}

.services-page-hero-info > p {
    margin-top: 17px;

    color: var(--text-soft);

    line-height: 1.75;

    font-size: 14px;
}

.services-mini-info {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 10px;

    margin-top: 28px;
}

.services-mini-info > div {
    padding: 18px;

    display: flex;

    flex-direction: column;

    border-radius: 16px;

    border: 1px solid var(--border);

    background: rgba(255, 255, 255, 0.025);
}

.services-mini-info strong {
    color: var(--accent);

    font-size: 25px;
}

.services-mini-info span {
    margin-top: 3px;

    color: var(--text-muted);

    font-size: 12px;
}


/* ================================
   HİZMET DETAYLARI
================================ */

.service-detail {
    position: relative;

    padding: 105px 0;

    background: #0b0f14;

    border-bottom: 1px solid var(--border);
}

.service-detail-alt {
    background: #11171f;
}

.service-detail-grid {
    display: grid;

    grid-template-columns: 190px minmax(0, 760px);

    gap: 70px;

    align-items: flex-start;

    justify-content: center;
}


/* BÜYÜK 01 / 02 / 03 NUMARALARI */

.service-detail-number {
    font-family: "Manrope", sans-serif;

    font-size: 105px;

    font-weight: 800;

    line-height: 0.9;

    letter-spacing: -0.08em;

    color: transparent;

    -webkit-text-stroke:
        1px rgba(255, 122, 0, 0.38);

    user-select: none;
}


/* HİZMET YAZILARI */

.service-detail-content {
    max-width: 760px;
}

.service-detail-content h2 {
    font-size: clamp(40px, 5vw, 62px);

    letter-spacing: -0.04em;
}

.service-detail-content > p {
    margin-top: 20px;

    color: var(--text-soft);

    line-height: 1.85;

    font-size: 16px;
}

.service-detail-content > p + p {
    margin-top: 14px;
}


/* HİZMET ETİKETLERİ */

.service-detail-tags {
    display: flex;

    flex-wrap: wrap;

    gap: 9px;

    margin-top: 30px;
}

.service-detail-tags span {
    padding: 9px 14px;

    border-radius: 999px;

    border: 1px solid var(--border);

    background: rgba(255, 255, 255, 0.025);

    color: #cbd2db;

    font-size: 12px;

    font-weight: 650;
}


/* HOVER EFEKTİ */

.service-detail {
    transition: background 0.3s ease;
}

.service-detail:hover .service-detail-number {
    -webkit-text-stroke:
        1px rgba(255, 122, 0, 0.8);
}


/* ================================
   7/24 YOL YARDIM
================================ */

.road-help-section {
    position: relative;

    padding: 120px 0;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 15% 50%,
            rgba(255, 122, 0, 0.14),
            transparent 35%
        ),
        #090d12;
}

.road-help-section::after {
    content: "7/24";

    position: absolute;

    right: -30px;

    bottom: -90px;

    font-family: "Manrope", sans-serif;

    font-size: 300px;

    font-weight: 800;

    line-height: 1;

    color: rgba(255, 255, 255, 0.018);

    pointer-events: none;
}

.road-help-inner {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns: 1fr 420px;

    align-items: center;

    gap: 90px;
}

.road-help-content h2 {
    font-size: clamp(50px, 6vw, 82px);

    letter-spacing: -0.05em;
}

.road-help-content > p {
    max-width: 620px;

    margin-top: 22px;

    color: var(--text-soft);

    line-height: 1.8;
}


/* YOL YARDIM İLETİŞİM KUTUSU */

.road-help-contact {
    padding: 34px;

    display: flex;

    flex-direction: column;

    border-radius: 26px;

    border: 1px solid rgba(255, 122, 0, 0.25);

    background:
        linear-gradient(
            145deg,
            rgba(255, 122, 0, 0.09),
            rgba(255, 255, 255, 0.025)
        );
}

.road-help-contact > span {
    color: var(--text-muted);

    font-size: 12px;

    font-weight: 700;
}

.road-help-contact > a {
    margin-top: 6px;

    font-family: "Manrope", sans-serif;

    font-size: 34px;

    font-weight: 800;

    letter-spacing: -0.04em;
}

.road-help-contact > strong {
    margin-top: 5px;

    color: var(--accent);

    font-size: 14px;
}

.road-help-buttons {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 10px;

    margin-top: 27px;
}


/* ================================
   SON CTA
================================ */

.services-final-cta {
    padding: 130px 0;

    text-align: center;

    background: #11171f;

    border-top: 1px solid var(--border);
}

.services-final-inner {
    max-width: 900px;
}

.services-final-inner h2 {
    font-size: clamp(52px, 7vw, 90px);

    letter-spacing: -0.055em;
}

.services-final-inner > p {
    max-width: 650px;

    margin: 24px auto 0;

    color: var(--text-soft);

    line-height: 1.8;
}

.services-final-buttons {
    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 34px;
}


/* ==========================================================
   HİZMETLER SAYFASI - TABLET
   ========================================================== */

@media (max-width: 950px) {

    .services-page-hero-inner {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .services-page-hero-info {
        max-width: 600px;
    }

    .service-detail-grid {
        grid-template-columns: 130px 1fr;

        gap: 45px;
    }

    .service-detail-number {
        font-size: 80px;
    }

    .road-help-inner {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .road-help-contact {
        max-width: 520px;
    }

}


/* ==========================================================
   HİZMETLER SAYFASI - TELEFON
   ========================================================== */

@media (max-width: 650px) {

    .services-page-hero {
        min-height: auto;

        padding:
            130px 0
            75px;
    }

    .services-page-hero-inner {
        gap: 38px;
    }

    .services-page-hero-content h1 {
        font-size: 53px;
    }

    .services-page-hero-content > p {
        margin-top: 22px;

        font-size: 15px;
    }

    .services-page-buttons {
        display: grid;

        grid-template-columns: 1fr;

        width: 100%;
    }

    .services-page-buttons .btn {
        width: 100%;
    }

    .services-page-hero-info {
        padding: 25px;
    }

    .services-page-hero-info > strong {
        font-size: 28px;
    }


    /* HİZMETLER */

    .service-detail {
        padding: 75px 0;
    }

    .service-detail-grid {
        display: block;
    }

    .service-detail-number {
        margin-bottom: 35px;

        font-size: 68px;
    }

    .service-detail-content h2 {
        font-size: 39px;
    }

    .service-detail-content > p {
        font-size: 15px;

        line-height: 1.75;
    }


    /* YOL YARDIM */

    .road-help-section {
        padding: 85px 0;
    }

    .road-help-section::after {
        display: none;
    }

    .road-help-content h2 {
        font-size: 48px;
    }

    .road-help-contact {
        width: 100%;

        padding: 25px;
    }

    .road-help-contact > a {
        font-size: 28px;
    }

    .road-help-buttons {
        grid-template-columns: 1fr;
    }


    /* SON ALAN */

    .services-final-cta {
        padding: 90px 0;
    }

    .services-final-inner h2 {
        font-size: 48px;
    }

    .services-final-buttons {
        display: grid;

        grid-template-columns: 1fr;
    }

    .services-final-buttons .btn {
        width: 100%;
    }

}


/* ==========================================================
   ÇOK KÜÇÜK TELEFONLAR
   ========================================================== */

@media (max-width: 380px) {

    .services-page-hero-content h1 {
        font-size: 44px;
    }

    .services-mini-info {
        grid-template-columns: 1fr;
    }

    .service-detail-content h2 {
        font-size: 34px;
    }

    .road-help-content h2 {
        font-size: 41px;
    }

    .road-help-contact > a {
        font-size: 24px;
    }

}
/* ==========================================================
   HAKKIMIZDA SAYFASI
   ========================================================== */


/* ================================
   HAKKIMIZDA HERO
================================ */

.about-page-hero {
    position: relative;
    min-height: 760px;

    display: flex;
    align-items: center;

    padding: 160px 0 100px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 75% 35%,
            rgba(255, 122, 0, 0.13),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #090d12 0%,
            #0d131a 55%,
            #111820 100%
        );

    border-bottom: 1px solid var(--border);
}


/* ARKA PLAN DEKORASYONU */

.about-page-hero::before {
    content: "";

    position: absolute;

    width: 560px;
    height: 560px;

    right: -170px;
    top: -180px;

    border-radius: 50%;

    border: 1px solid rgba(255, 122, 0, 0.12);
}

.about-page-hero::after {
    content: "K";

    position: absolute;

    right: 2%;
    bottom: -120px;

    font-family: "Manrope", sans-serif;

    font-size: 520px;
    font-weight: 800;

    line-height: 1;

    color: rgba(255, 255, 255, 0.018);

    pointer-events: none;
}


/* HERO İÇERİK */

.about-page-hero-grid {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, 1.35fr)
        minmax(320px, 0.65fr);

    align-items: center;

    gap: 90px;
}


.about-page-hero-content {
    max-width: 800px;
}


.about-page-hero-content h1 {
    font-size: clamp(58px, 7vw, 100px);

    line-height: 0.98;

    letter-spacing: -0.055em;
}


.about-page-hero-content h1 span {
    display: block;

    color: var(--accent);
}


.about-page-hero-content > p {
    max-width: 680px;

    margin-top: 28px;

    color: var(--text-soft);

    font-size: 17px;

    line-height: 1.8;
}


.about-page-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 34px;
}


/* HERO SAĞ KART */

.about-page-hero-card {
    position: relative;

    padding: 36px;

    border-radius: 26px;

    border: 1px solid var(--border-strong);

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.07),
            rgba(255, 255, 255, 0.02)
        );

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.3);

    backdrop-filter: blur(15px);
}


.about-page-hero-card > span {
    display: block;

    margin-bottom: 15px;

    color: var(--accent);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 0.16em;
}


.about-page-hero-card > strong {
    display: block;

    font-family: "Manrope", sans-serif;

    font-size: 35px;

    line-height: 1.15;
}


.about-page-hero-card > p {
    margin-top: 18px;

    color: var(--text-soft);

    font-size: 14px;

    line-height: 1.75;
}


.about-card-bottom {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 10px;

    margin-top: 28px;
}


.about-card-bottom > div {
    padding: 18px;

    display: flex;

    flex-direction: column;

    border: 1px solid var(--border);

    border-radius: 16px;

    background: rgba(255, 255, 255, 0.025);
}


.about-card-bottom strong {
    color: var(--accent);

    font-size: 21px;
}


.about-card-bottom span {
    margin-top: 4px;

    color: var(--text-muted);

    font-size: 11px;
}


/* ================================
   BİZ KİMİZ?
================================ */

.about-story {
    padding: 120px 0;

    background: #0b0f14;
}


.about-story-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 0.85fr)
        minmax(0, 1.15fr);

    gap: 100px;

    align-items: flex-start;
}


.about-story-title {
    position: sticky;

    top: 130px;
}


.about-story-title h2 {
    max-width: 550px;

    font-size: clamp(42px, 5vw, 65px);

    letter-spacing: -0.045em;
}


.about-story-text {
    padding-left: 45px;

    border-left: 1px solid var(--border);
}


.about-story-text p {
    color: var(--text-soft);

    font-size: 17px;

    line-height: 1.9;
}


.about-story-text p:first-child {
    color: #ffffff;

    font-size: 22px;

    font-weight: 600;

    line-height: 1.65;
}


.about-story-text p + p {
    margin-top: 28px;
}


/* ================================
   ÇALIŞMA ANLAYIŞIMIZ
================================ */

.about-values {
    padding: 115px 0;

    background: var(--bg-soft);

    border-top: 1px solid var(--border);

    border-bottom: 1px solid var(--border);
}


.about-values-heading {
    max-width: 760px;

    margin-bottom: 55px;
}


.about-values-heading h2 {
    font-size: clamp(44px, 5vw, 65px);

    letter-spacing: -0.045em;
}


.about-values-heading > p {
    max-width: 620px;

    margin-top: 18px;

    color: var(--text-soft);

    line-height: 1.8;
}


.about-values-grid {
    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 16px;
}


.about-value-card {
    min-height: 330px;

    padding: 28px;

    display: flex;

    flex-direction: column;

    border: 1px solid var(--border);

    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.04),
            rgba(255, 255, 255, 0.01)
        );

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease;
}


.about-value-card:hover {
    transform: translateY(-6px);

    border-color: rgba(255, 122, 0, 0.35);

    background:
        linear-gradient(
            145deg,
            rgba(255, 122, 0, 0.08),
            rgba(255, 255, 255, 0.015)
        );
}


.about-value-number {
    width: 45px;
    height: 45px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background: var(--accent-soft);

    color: var(--accent);

    font-size: 12px;

    font-weight: 900;
}


.about-value-card h3 {
    margin-top: auto;

    padding-top: 55px;

    font-size: 22px;
}


.about-value-card p {
    margin-top: 13px;

    color: var(--text-soft);

    font-size: 14px;

    line-height: 1.7;
}


/* ================================
   NE TAŞIYORUZ?
================================ */

.about-services {
    padding: 120px 0;

    background: #0b0f14;
}


.about-services-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 0.8fr)
        minmax(0, 1.2fr);

    gap: 100px;

    align-items: flex-start;
}


.about-services-left {
    position: sticky;

    top: 130px;
}


.about-services-left h2 {
    max-width: 560px;

    font-size: clamp(44px, 5vw, 66px);

    letter-spacing: -0.045em;
}


.about-services-left > p {
    max-width: 520px;

    margin-top: 20px;

    color: var(--text-soft);

    line-height: 1.8;
}


.about-services-left .btn {
    margin-top: 30px;
}


/* HİZMET SATIRLARI */

.about-services-list {
    border-top: 1px solid var(--border);
}


.about-service-row {
    min-height: 92px;

    padding: 20px 5px;

    display: grid;

    grid-template-columns: 65px 1fr;

    align-items: center;

    gap: 20px;

    border-bottom: 1px solid var(--border);

    transition:
        padding 0.25s ease,
        background 0.25s ease;
}


.about-service-row:hover {
    padding-left: 18px;

    background:
        linear-gradient(
            90deg,
            rgba(255, 122, 0, 0.07),
            transparent
        );
}


.about-service-row > span {
    color: var(--accent);

    font-size: 12px;

    font-weight: 900;
}


.about-service-row > strong {
    font-family: "Manrope", sans-serif;

    font-size: 21px;

    font-weight: 700;
}


/* ================================
   7/24 ULAŞABİLİRSİNİZ
================================ */

.about-emergency {
    position: relative;

    padding: 115px 0;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 80% 50%,
            rgba(255, 122, 0, 0.12),
            transparent 30%
        ),
        #11171f;

    border-top: 1px solid var(--border);

    border-bottom: 1px solid var(--border);
}


.about-emergency::before {
    content: "24";

    position: absolute;

    right: -40px;

    bottom: -110px;

    font-family: "Manrope", sans-serif;

    font-size: 340px;

    font-weight: 900;

    color: rgba(255, 255, 255, 0.018);

    line-height: 1;

    pointer-events: none;
}


.about-emergency-inner {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns: 1fr 430px;

    align-items: center;

    gap: 90px;
}


.about-emergency-inner h2 {
    font-size: clamp(48px, 6vw, 80px);

    letter-spacing: -0.05em;
}


.about-emergency-inner > div:first-child > p {
    max-width: 620px;

    margin-top: 20px;

    color: var(--text-soft);

    line-height: 1.8;
}


/* İLETİŞİM KARTI */

.about-emergency-contact {
    padding: 34px;

    display: flex;

    flex-direction: column;

    border-radius: 26px;

    border: 1px solid rgba(255, 122, 0, 0.25);

    background:
        linear-gradient(
            145deg,
            rgba(255, 122, 0, 0.09),
            rgba(255, 255, 255, 0.025)
        );
}


.about-emergency-contact > span {
    color: var(--accent);

    font-size: 13px;

    font-weight: 800;
}


.about-emergency-contact > a {
    margin-top: 5px;

    font-family: "Manrope", sans-serif;

    font-size: 33px;

    font-weight: 800;

    letter-spacing: -0.04em;
}


.about-emergency-contact > div {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 10px;

    margin-top: 27px;
}


/* ================================
   HAKKIMIZDA SON CTA
================================ */

.about-final {
    padding: 130px 0;

    background: #0b0f14;

    text-align: center;
}


.about-final-inner {
    max-width: 900px;
}


.about-final-inner h2 {
    font-size: clamp(50px, 7vw, 88px);

    letter-spacing: -0.055em;
}


.about-final-inner > p {
    max-width: 620px;

    margin: 24px auto 0;

    color: var(--text-soft);

    line-height: 1.8;
}


.about-final-inner .btn {
    margin-top: 32px;
}


/* ==========================================================
   HAKKIMIZDA - TABLET
   ========================================================== */

@media (max-width: 1000px) {

    .about-page-hero-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }


    .about-page-hero-card {
        max-width: 620px;
    }


    .about-story-grid {
        gap: 55px;
    }


    .about-values-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .about-services-grid {
        gap: 55px;
    }


    .about-emergency-inner {
        grid-template-columns: 1fr;

        gap: 45px;
    }


    .about-emergency-contact {
        max-width: 520px;
    }

}


/* ==========================================================
   HAKKIMIZDA - TELEFON
   ========================================================== */

@media (max-width: 700px) {

    /* HERO */

    .about-page-hero {
        min-height: auto;

        padding: 130px 0 80px;
    }


    .about-page-hero::after {
        display: none;
    }


    .about-page-hero-content h1 {
        font-size: 51px;
    }


    .about-page-hero-content > p {
        font-size: 15px;
    }


    .about-page-actions {
        display: grid;

        grid-template-columns: 1fr;
    }


    .about-page-actions .btn {
        width: 100%;
    }


    .about-page-hero-card {
        padding: 25px;
    }


    .about-page-hero-card > strong {
        font-size: 28px;
    }


    /* BİZ KİMİZ */

    .about-story {
        padding: 80px 0;
    }


    .about-story-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }


    .about-story-title {
        position: static;
    }


    .about-story-title h2 {
        font-size: 40px;
    }


    .about-story-text {
        padding-left: 20px;
    }


    .about-story-text p {
        font-size: 15px;
    }


    .about-story-text p:first-child {
        font-size: 18px;
    }


    /* DEĞERLER */

    .about-values {
        padding: 80px 0;
    }


    .about-values-heading h2 {
        font-size: 40px;
    }


    .about-values-grid {
        grid-template-columns: 1fr;
    }


    .about-value-card {
        min-height: 250px;

        padding: 24px;
    }


    .about-value-card h3 {
        padding-top: 40px;
    }


    /* HİZMETLER */

    .about-services {
        padding: 80px 0;
    }


    .about-services-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }


    .about-services-left {
        position: static;
    }


    .about-services-left h2 {
        font-size: 40px;
    }


    .about-service-row {
        min-height: 80px;

        grid-template-columns: 45px 1fr;
    }


    .about-service-row > strong {
        font-size: 17px;
    }


    /* ACİL */

    .about-emergency {
        padding: 85px 0;
    }


    .about-emergency::before {
        display: none;
    }


    .about-emergency-inner h2 {
        font-size: 47px;
    }


    .about-emergency-contact {
        width: 100%;

        padding: 25px;
    }


    .about-emergency-contact > a {
        font-size: 27px;
    }


    .about-emergency-contact > div {
        grid-template-columns: 1fr;
    }


    /* SON */

    .about-final {
        padding: 90px 0;
    }


    .about-final-inner h2 {
        font-size: 46px;
    }

}


/* ==========================================================
   HAKKIMIZDA - KÜÇÜK TELEFON
   ========================================================== */

@media (max-width: 390px) {

    .about-page-hero-content h1 {
        font-size: 43px;
    }


    .about-card-bottom {
        grid-template-columns: 1fr;
    }


    .about-story-title h2,
    .about-values-heading h2,
    .about-services-left h2 {
        font-size: 35px;
    }


    .about-emergency-inner h2 {
        font-size: 40px;
    }


    .about-emergency-contact > a {
        font-size: 23px;
    }


    .about-final-inner h2 {
        font-size: 39px;
    }

}
/* ==========================================================
   HAKKIMIZDA - ÇALIŞMA ANLAYIŞIMIZ KART İKONLARI
   ========================================================== */


/* NUMARA + İKON ÜST SATIRI */

.about-value-top {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}


/* SAĞ TARAFTAKİ İKON */

.about-value-icon {
    width: 58px;
    height: 58px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 17px;

    border: 1px solid rgba(255, 122, 0, 0.22);

    background:
        linear-gradient(
            145deg,
            rgba(255, 122, 0, 0.14),
            rgba(255, 122, 0, 0.035)
        );

    color: #ff7a00;

    font-size: 23px;
    font-weight: 800;

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04);

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}


/* KARTIN ÜZERİNE GELİNCE İKON */

.about-value-card:hover .about-value-icon {
    transform: translateY(-5px);

    border-color: rgba(255, 122, 0, 0.55);

    background:
        linear-gradient(
            145deg,
            rgba(255, 122, 0, 0.24),
            rgba(255, 122, 0, 0.07)
        );

    box-shadow:
        0 12px 30px rgba(255, 122, 0, 0.10);
}


/* KART BAŞLIKLARINI BİRAZ YUKARI ALIYORUZ */

.about-value-card h3 {
    margin-top: auto;

    padding-top: 38px;
}


/* NUMARA TASARIMI */

.about-value-top .about-value-number {
    width: 46px;
    height: 46px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255, 122, 0, 0.12);

    border: 1px solid rgba(255, 122, 0, 0.08);

    color: #ff7a00;

    font-size: 12px;
    font-weight: 900;
}


/* TELEFON */

@media (max-width: 700px) {

    .about-value-icon {
        width: 52px;
        height: 52px;

        border-radius: 15px;

        font-size: 20px;
    }

    .about-value-card h3 {
        padding-top: 32px;
    }

}
/* ==========================================================
   GALERİ SAYFASI
   ========================================================== */


/* ================================
   GALERİ HERO
================================ */

.gallery-page-hero {
    position: relative;

    padding: 170px 0 95px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 78% 30%,
            rgba(255, 122, 0, 0.13),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #090d12 0%,
            #0d131a 58%,
            #111820 100%
        );

    border-bottom: 1px solid var(--border);
}

.gallery-page-hero::before {
    content: "";

    position: absolute;

    width: 520px;
    height: 520px;

    right: -180px;
    top: -220px;

    border-radius: 50%;

    border: 1px solid rgba(255, 122, 0, 0.13);
}

.gallery-page-hero::after {
    content: "GALERİ";

    position: absolute;

    right: 2%;
    bottom: -45px;

    font-family: "Manrope", sans-serif;

    font-size: 145px;
    font-weight: 800;

    letter-spacing: -0.06em;

    color: rgba(255, 255, 255, 0.018);

    pointer-events: none;
}

.gallery-page-hero-inner {
    position: relative;
    z-index: 2;

    max-width: 950px;
}

.gallery-page-hero-inner h1 {
    max-width: 900px;

    font-size: clamp(60px, 8vw, 110px);

    line-height: 0.96;

    letter-spacing: -0.06em;
}

.gallery-page-hero-inner h1 span {
    display: block;

    color: var(--accent);
}

.gallery-page-hero-inner > p {
    max-width: 700px;

    margin-top: 28px;

    color: var(--text-soft);

    font-size: 17px;

    line-height: 1.8;
}


/* ================================
   GALERİ FOTOĞRAFLARI
================================ */

.gallery-page-section {
    padding: 110px 0;

    background: #0b0f14;
}

.gallery-page-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.25fr)
        minmax(320px, 0.75fr);

    grid-template-rows:
        340px
        340px;

    gap: 18px;
}


/* FOTOĞRAF KARTLARI */

.gallery-page-item {
    position: relative;

    margin: 0;

    overflow: hidden;

    border-radius: 24px;

    border: 1px solid var(--border);

    background: #11171f;

    min-height: 0;
}


/* SOLDAKİ BÜYÜK FOTOĞRAF */

.gallery-page-large {
    grid-row: 1 / span 2;
}


/* FOTOĞRAF */

.gallery-page-item img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.55s ease,
        filter 0.4s ease;
}


/* FOTOĞRAF ÜZERİNE KOYU GRADIENT */

.gallery-page-item::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 40%,
            rgba(0, 0, 0, 0.72) 100%
        );

    pointer-events: none;

    transition: background 0.35s ease;
}


/* FOTOĞRAF YAZISI */

.gallery-page-item figcaption {
    position: absolute;

    left: 28px;
    right: 28px;
    bottom: 26px;

    z-index: 2;

    display: flex;

    flex-direction: column;

    gap: 6px;
}

.gallery-page-item figcaption span {
    color: var(--accent);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 0.14em;
}

.gallery-page-item figcaption strong {
    color: #ffffff;

    font-family: "Manrope", sans-serif;

    font-size: 25px;

    line-height: 1.2;
}


/* HOVER */

.gallery-page-item:hover img {
    transform: scale(1.055);

    filter: brightness(1.06);
}

.gallery-page-item:hover::after {
    background:
        linear-gradient(
            180deg,
            transparent 34%,
            rgba(0, 0, 0, 0.78) 100%
        );
}


/* ================================
   GALERİ ALT BİLGİ
================================ */

.gallery-info-section {
    padding: 115px 0;

    background: var(--bg-soft);

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.gallery-info-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 0.9fr);

    align-items: center;

    gap: 100px;
}

.gallery-info-grid h2 {
    max-width: 650px;

    font-size: clamp(45px, 5vw, 70px);

    letter-spacing: -0.05em;
}

.gallery-info-grid h2 span {
    display: block;

    color: var(--accent);
}

.gallery-info-grid > div:last-child p {
    max-width: 600px;

    color: var(--text-soft);

    line-height: 1.85;

    font-size: 16px;
}

.gallery-info-grid .btn {
    margin-top: 27px;
}


/* ================================
   GALERİ SON CTA
================================ */

.gallery-final-cta {
    position: relative;

    padding: 130px 0;

    overflow: hidden;

    text-align: center;

    background:
        radial-gradient(
            circle at 50% 100%,
            rgba(255, 122, 0, 0.10),
            transparent 35%
        ),
        #090d12;
}

.gallery-final-cta::before {
    content: "";

    position: absolute;

    width: 440px;
    height: 440px;

    left: 50%;
    bottom: -340px;

    transform: translateX(-50%);

    border-radius: 50%;

    border: 1px solid rgba(255, 122, 0, 0.12);
}

.gallery-final-inner {
    position: relative;

    z-index: 2;

    max-width: 900px;
}

.gallery-final-inner h2 {
    font-size: clamp(52px, 7vw, 90px);

    letter-spacing: -0.055em;
}

.gallery-final-inner h2 span {
    display: block;

    color: var(--accent);
}

.gallery-final-inner > p {
    max-width: 650px;

    margin: 24px auto 0;

    color: var(--text-soft);

    line-height: 1.8;
}

.gallery-final-buttons {
    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 34px;
}


/* ==========================================================
   GALERİ - TABLET
   ========================================================== */

@media (max-width: 950px) {

    .gallery-page-grid {
        grid-template-columns: 1fr 1fr;

        grid-template-rows:
            520px
            320px;
    }

    .gallery-page-large {
        grid-column: 1 / -1;

        grid-row: auto;
    }

    .gallery-info-grid {
        gap: 55px;
    }

}


/* ==========================================================
   GALERİ - TELEFON
   ========================================================== */

@media (max-width: 700px) {

    .gallery-page-hero {
        padding: 135px 0 75px;
    }

    .gallery-page-hero::after {
        display: none;
    }

    .gallery-page-hero-inner h1 {
        font-size: 52px;
    }

    .gallery-page-hero-inner > p {
        font-size: 15px;
    }


    /* FOTOĞRAFLAR ALT ALTA */

    .gallery-page-section {
        padding: 75px 0;
    }

    .gallery-page-grid {
        display: grid;

        grid-template-columns: 1fr;

        grid-template-rows: none;

        gap: 14px;
    }

    .gallery-page-large {
        grid-column: auto;
        grid-row: auto;
    }

    .gallery-page-item {
        height: 330px;

        border-radius: 19px;
    }

    .gallery-page-large {
        height: 420px;
    }

    .gallery-page-item figcaption {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }

    .gallery-page-item figcaption strong {
        font-size: 21px;
    }


    /* ALT BİLGİ */

    .gallery-info-section {
        padding: 80px 0;
    }

    .gallery-info-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .gallery-info-grid h2 {
        font-size: 41px;
    }


    /* CTA */

    .gallery-final-cta {
        padding: 90px 0;
    }

    .gallery-final-inner h2 {
        font-size: 47px;
    }

    .gallery-final-buttons {
        display: grid;

        grid-template-columns: 1fr;
    }

    .gallery-final-buttons .btn {
        width: 100%;
    }

}


/* ==========================================================
   GALERİ - KÜÇÜK TELEFON
   ========================================================== */

@media (max-width: 390px) {

    .gallery-page-hero-inner h1 {
        font-size: 44px;
    }

    .gallery-page-item {
        height: 285px;
    }

    .gallery-page-large {
        height: 360px;
    }

    .gallery-info-grid h2 {
        font-size: 35px;
    }

    .gallery-final-inner h2 {
        font-size: 40px;
    }

}
/* ==========================================================
   İLETİŞİM SAYFASI
   ========================================================== */


/* ================================
   İLETİŞİM HERO
================================ */

.contact-page-hero {
    position: relative;

    padding: 175px 0 105px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 80% 35%,
            rgba(255, 122, 0, 0.14),
            transparent 31%
        ),
        linear-gradient(
            135deg,
            #090d12 0%,
            #0d131a 55%,
            #111820 100%
        );

    border-bottom: 1px solid var(--border);
}


.contact-page-hero::before {
    content: "";

    position: absolute;

    width: 540px;
    height: 540px;

    right: -180px;
    top: -220px;

    border-radius: 50%;

    border: 1px solid rgba(255, 122, 0, 0.14);

    pointer-events: none;
}


.contact-page-hero::after {
    content: "İLETİŞİM";

    position: absolute;

    right: 1%;
    bottom: -45px;

    font-family: "Manrope", sans-serif;

    font-size: 135px;

    font-weight: 800;

    line-height: 1;

    letter-spacing: -0.06em;

    color: rgba(255, 255, 255, 0.018);

    pointer-events: none;
}


.contact-page-hero-grid {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, 1.25fr)
        minmax(300px, 0.75fr);

    align-items: center;

    gap: 90px;
}


.contact-page-hero-content h1 {
    max-width: 900px;

    font-size: clamp(60px, 7vw, 105px);

    line-height: 0.97;

    letter-spacing: -0.06em;
}


.contact-page-hero-content h1 span {
    display: block;

    color: var(--accent);
}


.contact-page-hero-content > p {
    max-width: 690px;

    margin-top: 28px;

    color: var(--text-soft);

    font-size: 17px;

    line-height: 1.8;
}


/* 7/24 DURUM KUTUSU */

.contact-page-status {
    padding: 28px;

    display: flex;

    align-items: flex-start;

    gap: 18px;

    border: 1px solid var(--border-strong);

    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.06),
            rgba(255, 255, 255, 0.02)
        );

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.28);
}


.contact-status-dot {
    width: 13px;
    height: 13px;

    flex-shrink: 0;

    margin-top: 5px;

    border-radius: 50%;

    background: var(--accent);

    box-shadow:
        0 0 0 7px rgba(255, 122, 0, 0.10),
        0 0 25px rgba(255, 122, 0, 0.45);
}


.contact-page-status strong {
    display: block;

    font-family: "Manrope", sans-serif;

    font-size: 21px;
}


.contact-page-status p {
    margin-top: 7px;

    color: var(--text-soft);

    font-size: 13px;

    line-height: 1.65;
}


/* ================================
   İLETİŞİM KARTLARI
================================ */

.contact-cards-section {
    padding: 95px 0;

    background: #0b0f14;
}


.contact-cards-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 15px;
}


.contact-info-card {
    position: relative;

    min-height: 300px;

    padding: 28px;

    display: flex;

    flex-direction: column;

    text-decoration: none;

    overflow: hidden;

    border: 1px solid var(--border);

    border-radius: 23px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.045),
            rgba(255, 255, 255, 0.012)
        );

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease;
}


.contact-info-card::before {
    content: "";

    position: absolute;

    width: 100px;
    height: 100px;

    right: -50px;
    top: -50px;

    border-radius: 50%;

    background: rgba(255, 122, 0, 0.06);

    transition: transform 0.35s ease;
}


.contact-info-card:hover {
    transform: translateY(-6px);

    border-color: rgba(255, 122, 0, 0.35);

    background:
        linear-gradient(
            145deg,
            rgba(255, 122, 0, 0.075),
            rgba(255, 255, 255, 0.015)
        );
}


.contact-info-card:hover::before {
    transform: scale(1.6);
}


.contact-card-label {
    position: relative;

    z-index: 2;

    color: var(--accent);

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 0.15em;
}


.contact-info-card > strong {
    position: relative;

    z-index: 2;

    margin-top: 24px;

    color: #ffffff;

    font-family: "Manrope", sans-serif;

    font-size: 25px;

    line-height: 1.2;

    letter-spacing: -0.03em;
}


.contact-info-card > p {
    position: relative;

    z-index: 2;

    margin-top: 16px;

    color: var(--text-soft);

    font-size: 13px;

    line-height: 1.7;
}


.contact-card-action {
    position: relative;

    z-index: 2;

    margin-top: auto;

    padding-top: 30px;

    color: #ffffff;

    font-size: 12px;

    font-weight: 750;

    transition: color 0.25s ease;
}


.contact-info-card:hover .contact-card-action {
    color: var(--accent);
}


/* ================================
   ANA İLETİŞİM ALANI
================================ */

.contact-main-section {
    padding: 120px 0;

    background: var(--bg-soft);

    border-top: 1px solid var(--border);

    border-bottom: 1px solid var(--border);
}


.contact-main-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(380px, 0.8fr);

    align-items: center;

    gap: 100px;
}


.contact-main-content h2 {
    max-width: 680px;

    font-size: clamp(47px, 5vw, 70px);

    letter-spacing: -0.05em;
}


.contact-main-content h2 span {
    display: block;

    color: var(--accent);
}


.contact-main-content > p {
    max-width: 650px;

    margin-top: 22px;

    color: var(--text-soft);

    font-size: 16px;

    line-height: 1.85;
}


/* 01 / 02 / 03 */

.contact-main-list {
    max-width: 650px;

    margin-top: 38px;

    border-top: 1px solid var(--border);
}


.contact-main-list > div {
    min-height: 76px;

    display: grid;

    grid-template-columns: 55px 1fr;

    align-items: center;

    gap: 15px;

    border-bottom: 1px solid var(--border);
}


.contact-main-list span {
    color: var(--accent);

    font-size: 11px;

    font-weight: 900;
}


.contact-main-list p {
    color: #d7dce3;

    font-size: 14px;
}


/* ================================
   BÜYÜK İLETİŞİM KARTI
================================ */

.contact-big-card {
    position: relative;

    padding: 40px;

    overflow: hidden;

    border: 1px solid rgba(255, 122, 0, 0.24);

    border-radius: 28px;

    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(255, 122, 0, 0.13),
            transparent 34%
        ),
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.055),
            rgba(255, 255, 255, 0.015)
        );

    box-shadow:
        0 35px 90px rgba(0, 0, 0, 0.28);
}


.contact-big-card::after {
    content: "24";

    position: absolute;

    right: -25px;
    bottom: -60px;

    font-family: "Manrope", sans-serif;

    font-size: 190px;

    font-weight: 900;

    line-height: 1;

    color: rgba(255, 255, 255, 0.022);

    pointer-events: none;
}


.contact-big-label {
    position: relative;

    z-index: 2;

    color: var(--accent);

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 0.15em;
}


.contact-big-card h3 {
    position: relative;

    z-index: 2;

    margin-top: 20px;

    font-family: "Manrope", sans-serif;

    font-size: 48px;

    line-height: 1;

    letter-spacing: -0.05em;
}


.contact-big-card h3 span {
    display: block;

    color: var(--accent);
}


.contact-big-card > p {
    position: relative;

    z-index: 2;

    margin-top: 21px;

    color: var(--text-soft);

    font-size: 14px;

    line-height: 1.75;
}


.contact-big-person {
    position: relative;

    z-index: 2;

    margin-top: 30px;

    padding-top: 23px;

    display: flex;

    flex-direction: column;

    gap: 4px;

    border-top: 1px solid var(--border);
}


.contact-big-person span {
    color: var(--text-muted);

    font-size: 11px;
}


.contact-big-person strong {
    font-size: 16px;
}


.contact-big-phone {
    position: relative;

    z-index: 2;

    display: inline-block;

    margin-top: 18px;

    color: #ffffff;

    font-family: "Manrope", sans-serif;

    font-size: clamp(26px, 3vw, 36px);

    font-weight: 800;

    letter-spacing: -0.04em;

    transition: color 0.25s ease;
}


.contact-big-phone:hover {
    color: var(--accent);
}


.contact-big-buttons {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 10px;

    margin-top: 27px;
}


/* ================================
   HİZMET ETİKETLERİ
================================ */

.contact-services-section {
    padding: 110px 0;

    background: #0b0f14;
}


.contact-services-heading {
    max-width: 760px;

    margin-bottom: 45px;
}


.contact-services-heading h2 {
    font-size: clamp(45px, 5vw, 68px);

    letter-spacing: -0.05em;
}


.contact-services-heading h2 span {
    display: block;

    color: var(--accent);
}


.contact-service-tags {
    display: flex;

    flex-wrap: wrap;

    gap: 10px;
}


.contact-service-tags span {
    padding: 14px 19px;

    border: 1px solid var(--border);

    border-radius: 999px;

    background: rgba(255, 255, 255, 0.025);

    color: #d9dee5;

    font-size: 13px;

    font-weight: 650;

    transition:
        border-color 0.25s ease,
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}


.contact-service-tags span:hover {
    transform: translateY(-2px);

    border-color: rgba(255, 122, 0, 0.35);

    background: rgba(255, 122, 0, 0.08);

    color: var(--accent);
}


/* ================================
   SON İLETİŞİM ALANI
================================ */

.contact-final-section {
    position: relative;

    padding: 135px 0;

    overflow: hidden;

    text-align: center;

    background:
        radial-gradient(
            circle at 50% 100%,
            rgba(255, 122, 0, 0.13),
            transparent 37%
        ),
        #11171f;

    border-top: 1px solid var(--border);
}


.contact-final-section::before {
    content: "";

    position: absolute;

    width: 520px;
    height: 520px;

    left: 50%;
    bottom: -410px;

    transform: translateX(-50%);

    border-radius: 50%;

    border: 1px solid rgba(255, 122, 0, 0.15);
}


.contact-final-inner {
    position: relative;

    z-index: 2;

    max-width: 950px;
}


.contact-final-inner h2 {
    font-size: clamp(55px, 7vw, 95px);

    line-height: 1;

    letter-spacing: -0.06em;
}


.contact-final-inner h2 span {
    display: block;

    color: var(--accent);
}


.contact-final-inner > p {
    margin-top: 22px;

    color: var(--text-soft);

    font-size: 16px;
}


.contact-final-phone {
    display: inline-block;

    margin-top: 35px;

    padding: 18px 28px;

    border-radius: 14px;

    background: var(--accent);

    color: #ffffff;

    font-family: "Manrope", sans-serif;

    font-size: clamp(23px, 3vw, 32px);

    font-weight: 800;

    letter-spacing: -0.03em;

    box-shadow:
        0 18px 45px rgba(255, 122, 0, 0.17);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.contact-final-phone:hover {
    transform: translateY(-4px);

    box-shadow:
        0 24px 55px rgba(255, 122, 0, 0.25);
}


/* ==========================================================
   İLETİŞİM - TABLET
   ========================================================== */

@media (max-width: 1000px) {

    .contact-page-hero-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }


    .contact-page-status {
        max-width: 600px;
    }


    .contact-cards-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .contact-main-grid {
        grid-template-columns: 1fr;

        gap: 55px;
    }


    .contact-big-card {
        max-width: 620px;
    }

}


/* ==========================================================
   İLETİŞİM - TELEFON
   ========================================================== */

@media (max-width: 700px) {

    /* HERO */

    .contact-page-hero {
        padding: 135px 0 75px;
    }


    .contact-page-hero::after {
        display: none;
    }


    .contact-page-hero-content h1 {
        font-size: 51px;
    }


    .contact-page-hero-content > p {
        font-size: 15px;
    }


    .contact-page-status {
        padding: 22px;
    }


    /* KARTLAR */

    .contact-cards-section {
        padding: 75px 0;
    }


    .contact-cards-grid {
        grid-template-columns: 1fr;

        gap: 12px;
    }


    .contact-info-card {
        min-height: 245px;

        padding: 24px;
    }


    /* ANA İLETİŞİM */

    .contact-main-section {
        padding: 80px 0;
    }


    .contact-main-content h2 {
        font-size: 41px;
    }


    .contact-main-content > p {
        font-size: 15px;
    }


    .contact-main-list > div {
        grid-template-columns: 42px 1fr;
    }


    /* BÜYÜK KART */

    .contact-big-card {
        width: 100%;

        padding: 27px;
    }


    .contact-big-card h3 {
        font-size: 41px;
    }


    .contact-big-card::after {
        display: none;
    }


    .contact-big-phone {
        font-size: 27px;
    }


    .contact-big-buttons {
        grid-template-columns: 1fr;
    }


    /* HİZMETLER */

    .contact-services-section {
        padding: 80px 0;
    }


    .contact-services-heading h2 {
        font-size: 40px;
    }


    .contact-service-tags {
        gap: 8px;
    }


    .contact-service-tags span {
        padding: 12px 15px;

        font-size: 12px;
    }


    /* SON */

    .contact-final-section {
        padding: 90px 0;
    }


    .contact-final-inner h2 {
        font-size: 48px;
    }


    .contact-final-phone {
        width: 100%;

        font-size: 24px;
    }

}


/* ==========================================================
   İLETİŞİM - ÇOK KÜÇÜK TELEFON
   ========================================================== */

@media (max-width: 390px) {

    .contact-page-hero-content h1 {
        font-size: 43px;
    }


    .contact-main-content h2 {
        font-size: 35px;
    }


    .contact-big-card h3 {
        font-size: 36px;
    }


    .contact-big-phone {
        font-size: 23px;
    }


    .contact-services-heading h2 {
        font-size: 35px;
    }


    .contact-final-inner h2 {
        font-size: 40px;
    }


    .contact-final-phone {
        font-size: 21px;
    }

}
/* HERO ALT KAYAN YAZI */

.hero-bottom {
    overflow: hidden;
    white-space: nowrap;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: #0b0f14;
}

.hero-bottom-inner {
    display: flex;
    align-items: center;
    gap: 55px;

    width: max-content;

    animation: heroTicker 18s linear infinite;
}

.hero-bottom-inner span {
    flex-shrink: 0;
}

.hero-bottom-inner i {
    flex-shrink: 0;
}

@keyframes heroTicker {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}/* ==========================================================
   KESİNTİSİZ KAYAN HİZMET ŞERİDİ
   ========================================================== */

.hero-bottom {
    width: 100%;
    overflow: hidden;

    background: #0b0f14;

    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-ticker {
    display: flex;

    width: max-content;

    animation: heroTicker 22s linear infinite;

    will-change: transform;
}

.hero-bottom-inner {
    display: flex;
    align-items: center;

    flex-shrink: 0;

    gap: 65px;

    padding: 25px 32px;
}

.hero-bottom-inner span {
    flex-shrink: 0;

    white-space: nowrap;

    color: #969ca6;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 0.12em;
}

.hero-bottom-inner i {
    width: 4px;
    height: 4px;

    flex-shrink: 0;

    border-radius: 50%;

    background: #ff7a00;
}


/* KESİNTİSİZ SOLA AKIŞ */

@keyframes heroTicker {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}


/* TELEFON */

@media (max-width: 700px) {

    .hero-ticker {
        animation-duration: 17s;
    }

    .hero-bottom-inner {
        gap: 38px;

        padding: 20px 20px;
    }

    .hero-bottom-inner span {
        font-size: 10px;
    }

}
.service-detail,
.road-help-section {
    scroll-margin-top: 110px;
}
/* ==========================================================
   SABİT WHATSAPP BUTONU
   ========================================================== */

.floating-whatsapp {
    position: fixed;
    right: 28px;
    bottom: 28px;
    z-index: 9999;

    display: flex;
    align-items: center;
    gap: 10px;

    padding: 11px 18px 11px 11px;

    background: #25D366;
    color: #ffffff;

    border-radius: 50px;
    text-decoration: none;

    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 800;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}


/* WA YAZAN YUVARLAK ALAN */

.floating-whatsapp-icon {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.18);

    color: #ffffff;

    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.04em;
}


/* WHATSAPP YAZISI */

.floating-whatsapp-text {
    color: #ffffff;
    white-space: nowrap;
}


/* ÜZERİNE GELİNCE */

.floating-whatsapp:hover {
    background: #20bd5a;
    transform: translateY(-3px);

    box-shadow:
        0 14px 35px rgba(0, 0, 0, 0.4),
        0 0 0 5px rgba(37, 211, 102, 0.10);
}


/* TELEFON */

@media (max-width: 700px) {

    .floating-whatsapp {
        right: 16px;

        /* Alttaki sabit mobil menünün üstünde dursun */
        bottom: 82px;

        padding: 9px;
        border-radius: 50%;
    }

    .floating-whatsapp-icon {
        width: 42px;
        height: 42px;
    }

    .floating-whatsapp-text {
        display: none;
    }
}
/* =========================
   GALERİ SAYFASI - 6 GÖRSEL
   ========================= */

.gallery-page-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.gallery-page-item {
    position: relative;
    overflow: hidden;
    min-height: 320px;
    border-radius: 22px;
    background: #11161d;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.gallery-page-large {
    min-height: 430px;
}

.gallery-page-item img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    display: block;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.gallery-page-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(5, 7, 10, 0.88) 0%,
        rgba(5, 7, 10, 0.20) 55%,
        rgba(5, 7, 10, 0.04) 100%
    );
    pointer-events: none;
}

.gallery-page-item figcaption {
    position: absolute;
    left: 26px;
    right: 26px;
    bottom: 24px;
    z-index: 2;

    display: flex;
    flex-direction: column;
    gap: 7px;
}

.gallery-page-item figcaption span {
    color: #ff7a00;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.gallery-page-item figcaption strong {
    color: #ffffff;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 800;
}

.gallery-page-item:hover img {
    transform: scale(1.045);
}

.gallery-page-item:hover {
    border-color: rgba(255, 122, 0, 0.34);
}


/* TABLET */

@media (max-width: 900px) {

    .gallery-page-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .gallery-page-item,
    .gallery-page-large {
        min-height: 300px;
    }

    .gallery-page-item figcaption strong {
        font-size: 20px;
    }
}


/* TELEFON */

@media (max-width: 650px) {

    .gallery-page-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .gallery-page-item,
    .gallery-page-large {
        min-height: 270px;
        border-radius: 18px;
    }

    .gallery-page-item figcaption {
        left: 18px;
        right: 18px;
        bottom: 18px;
    }

    .gallery-page-item figcaption strong {
        font-size: 19px;
    }

    .gallery-page-item figcaption span {
        font-size: 11px;
    }
}
/* WhatsApp butonunu sadece logo yap */

.floating-whatsapp {
    width: 58px;
    height: 58px;
    padding: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: #25D366;
}

.floating-whatsapp-icon {
    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: transparent;
}

.floating-whatsapp-icon svg {
    width: 32px;
    height: 32px;
    color: #ffffff;
}

.floating-whatsapp-text {
    display: none;
}

@media (max-width: 700px) {
    .floating-whatsapp {
        width: 56px;
        height: 56px;
        padding: 0;
    }
}
/* HAKKIMIZDA HERO - TAM ARKA PLAN */

.about-page-hero {
    position: relative;
    overflow: hidden;

   background:
    linear-gradient(
        90deg,
        rgba(8, 13, 19, 0.96) 0%,
        rgba(8, 13, 19, 0.86) 28%,
        rgba(8, 13, 19, 0.48) 55%,
        rgba(8, 13, 19, 0.08) 100%
    ),
    url("images/galeri-7.png");

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}


/* YAZILAR FOTOĞRAFIN ÜSTÜNDE KALSIN */

.about-page-hero .container {
    position: relative;
    z-index: 2;
}


/* SAĞ TARAF BOŞ KALSIN, ÇEKİCİ GÖRÜNSÜN */

.about-page-hero-content {
    max-width: 720px;
}


/* TELEFON */

@media (max-width: 768px) {

    .about-page-hero {
        background:
            linear-gradient(
                180deg,
                rgba(8, 13, 19, 0.88) 0%,
                rgba(8, 13, 19, 0.72) 100%
            ),
            url("images/galeri-7.png");

        background-size: cover;
        background-position: 68% center;
    }
}
/* HAKKIMIZDA HERO - TEMİZ SON DÜZEN */

.about-page-hero {
    position: relative;
    overflow: hidden;

    background:
        url("images/galeri-7.png") center center / cover no-repeat;
}


/* SOLDAN KOYU PANEL */

.about-page-hero::before {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        90deg,
        #080d13 0%,
        #080d13 28%,
        rgba(8, 13, 19, 0.96) 38%,
        rgba(8, 13, 19, 0.72) 50%,
        rgba(8, 13, 19, 0.18) 68%,
        rgba(8, 13, 19, 0) 82%
    );

    z-index: 1;
    pointer-events: none;
}


.about-page-hero .container {
    position: relative;
    z-index: 2;

    display: block !important;
}


.about-page-hero-inner {
    display: block !important;
}


.about-page-hero-content {
    width: 100%;
    max-width: 650px;
    position: relative;
    z-index: 3;
}


/* TELEFON */

@media (max-width: 768px) {

    .about-page-hero {
        background-position: 68% center;
    }

    .about-page-hero::before {
        background: rgba(8, 13, 19, 0.72);
    }

    .about-page-hero-content {
        max-width: 100%;
    }
}
/* HAKKIMIZDA HERO - SİYAH OVAL DÜZELTME */

.about-page-hero::before {
    content: "";
    position: absolute !important;

    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;

    width: auto !important;
    height: auto !important;

    border-radius: 0 !important;
    transform: none !important;

    background: linear-gradient(
        90deg,
        rgba(8, 13, 19, 0.96) 0%,
        rgba(8, 13, 19, 0.90) 25%,
        rgba(8, 13, 19, 0.72) 42%,
        rgba(8, 13, 19, 0.35) 62%,
        rgba(8, 13, 19, 0.05) 100%
    ) !important;

    z-index: 1;
    pointer-events: none;
}

.about-page-hero {
    background:
        url("images/galeri-7.png") center center / cover no-repeat !important;
}

.about-page-hero .container {
    position: relative;
    z-index: 2;
}

.about-page-hero-content {
    position: relative;
    z-index: 3;
}
/* HERO KENAR BOŞLUKLARINI KAPAT */

.about-page-hero {
    width: 100% !important;
    margin: 0 !important;
    border: 0 !important;
    outline: 0 !important;
}

.about-page-hero::before {
    top: -2px !important;
    left: -2px !important;
    right: -2px !important;
    bottom: -2px !important;
}

.about-page-hero::after {
    display: none !important;
}

body {
    margin: 0 !important;
}