html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    box-sizing: border-box;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}
body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #000;
    color: #fff;
    flex: 1 0 auto;
}

header, footer {
    background: #000;
    color: #fff;
    padding: 1.5rem 0;
}

a {
    color: #ff6600;
    text-decoration: none;
    transition: color 0.2s;
}
a:hover {
    color: #fff;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    min-height: 64px;
}

.logo {
    font-size: 2.2rem;
    font-weight: bold;
    color: #ff6600;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.menu a {
    font-size: 1.08rem;
    font-weight: 500;
    padding: 0.5rem 0.8rem;
    border-radius: 4px;
    transition: background 0.18s, color 0.18s;
    position: relative;
}

.menu a:hover, .menu a.active {
    background: #222;
    color: #ff6600 !important;
}

.menu a.active::after {
    content: '';
    display: block;
    height: 3px;
    width: 60%;
    background: #ff6600;
    border-radius: 2px;
    margin: 4px auto 0 auto;
}

nav form {
    margin-left: 2rem;
    display: flex;
    align-items: center;
    background: #181818;
    border-radius: 4px;
    padding: 0.1rem 0.6rem;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    height: 38px;
}

nav select {
    background: transparent;
    color: #ff6600;
    border: none;
    border-radius: 4px;
    padding: 0.2rem 1.2rem 0.2rem 0.7rem;
    font-size: 1rem;
    font-weight: 500;
    outline: none;
    transition: box-shadow 0.2s, border 0.2s;
    box-shadow: none;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

nav select:focus {
    box-shadow: 0 0 0 2px #ff6600;
    border: none;
}

nav select::-ms-expand {
    display: none;
}

nav form::after {
    content: '\25BC';
    color: #ff6600;
    font-size: 0.8rem;
    margin-left: -1.5rem;
    pointer-events: none;
}

.cta-btn {
    background: #ff6600;
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
}
.cta-btn:hover {
    background: #fff;
    color: #ff6600;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    flex: 1 0 auto;
    width: 100%;
    margin-top: 0 !important;
}

form {
    background: #111;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

input, select, textarea {
    padding: 0.75rem;
    border: 1px solid #333;
    border-radius: 4px;
    background: #222;
    color: #fff;
    font-size: 1rem;
}

input:focus, select:focus, textarea:focus {
    outline: 2px solid #ff6600;
}

footer {
    text-align: center;
    font-size: 0.95rem;
    margin-top: 2rem;
    flex-shrink: 0;
}

.social-icons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

@media (max-width: 900px) {
    nav {
        flex-direction: column;
        align-items: stretch;
        padding: 0 0.5rem;
    }
    .menu {
        gap: 1.2rem;
    }
}

@media (max-width: 600px) {
    nav {
        min-height: 48px;
    }
    .logo {
        font-size: 1.4rem;
    }
    .menu {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
        margin-top: 0.5rem;
    }
    nav form {
        margin-left: 0;
        margin-top: 0.5rem;
        width: 100%;
        justify-content: flex-end;
        height: 32px;
    }
    nav select {
        font-size: 0.95rem;
        padding: 0.2rem 1.2rem 0.2rem 0.7rem;
    }
}

/* === MODERN NAVBAR === */
header {
    background: rgba(0,0,0,0.97);
    box-shadow: none;
    position: sticky;
    top: 0;
    z-index: 100;
    margin-bottom: 0;
    padding-bottom: 0;
}
.navbar {
    margin-bottom: 0;
    padding-bottom: 0;
    min-height: 40px;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
}
.navbar__logo {
    margin-right: 2rem;
    margin-left: 0;
    padding-left: 0;
    display: flex;
    align-items: center;
}
.navbar__logo a {
    font-size: 1.4rem;
    font-weight: bold;
    color: #ff6600;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.18);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-left: 0;
}
.navbar__menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    justify-content: center;
    flex: 1;
}
.navbar__link {
    font-size: 1.08rem;
    font-weight: 500;
    color: #fff;
    padding: 0.5rem 0.9rem;
    border-radius: 4px;
    transition: background 0.18s, color 0.18s;
    position: relative;
    text-decoration: none;
    display: inline-block;
}
.navbar__link:hover, .navbar__link.active {
    color: #ff6600;
    background: #181818;
}
.navbar__link.active::after {
    content: '';
    display: block;
    height: 3px;
    width: 60%;
    background: #ff6600;
    border-radius: 2px;
    margin: 4px auto 0 auto;
}
.navbar__lang {
    margin-left: 2rem;
    display: flex;
    align-items: center;
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    height: 36px;
    position: relative;
    gap: 0.2em;
    border: none;
    transition: none;
}
.navbar__lang-icon {
    display: none;
}
.navbar__lang select {
    background: transparent;
    color: #ff6600;
    border: none;
    border-bottom: 2px solid #333;
    border-radius: 0;
    padding: 0.2em 1.5em 0.2em 0.2em;
    font-size: 1em;
    font-weight: 500;
    outline: none;
    box-shadow: none;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    min-width: 70px;
    letter-spacing: 0.01em;
    transition: border-color 0.18s, color 0.18s;
}
.navbar__lang select:focus, .navbar__lang select:hover {
    border-bottom: 2px solid #ff6600;
    color: #fff;
}
.navbar__lang::after {
    content: '\25BC';
    color: #ff6600;
    font-size: 0.85em;
    position: absolute;
    right: 0.2em;
    top: 55%;
    transform: translateY(-50%);
    pointer-events: none;
    transition: color 0.18s;
}
.navbar__lang select:focus ~ .navbar__lang::after,
.navbar__lang select:hover ~ .navbar__lang::after {
    color: #fff;
}
@media (max-width: 700px) {
    .navbar__lang {
        margin-left: 0;
        margin-top: 0.5rem;
        width: 100%;
        justify-content: flex-end;
        height: 32px;
        padding: 0;
    }
    .navbar__lang select {
        font-size: 0.97em;
        padding: 0.2em 1em 0.2em 0.2em;
    }
}
/* Hamburger */
.navbar__toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
    margin-left: 1rem;
}
.navbar__toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: #ff6600;
    border-radius: 2px;
    transition: all 0.3s;
}
@media (max-width: 900px) {
    .navbar {
        padding: 0 0.5rem;
        min-height: 40px;
    }
    .navbar__logo a {
        font-size: 1.1rem;
    }
    .navbar__menu {
        gap: 1.2rem;
    }
    .navbar__lang {
        margin-left: 1rem;
    }
}
@media (max-width: 700px) {
    .navbar {
        flex-direction: row;
        align-items: center;
        padding: 0 0.5em;
        min-height: 48px;
        position: relative;
        z-index: 100;
    }
    .navbar__toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 44px;
        height: 44px;
        background: #181818;
        border: none;
        border-radius: 50%;
        margin-left: auto;
        cursor: pointer;
        z-index: 110;
        box-shadow: 0 2px 8px #00000022;
        transition: background 0.18s;
    }
    .navbar__toggle span {
        display: block;
        width: 26px;
        height: 3px;
        background: #ff6600;
        margin: 4px 0;
        border-radius: 2px;
        transition: all 0.22s;
    }
    .navbar__menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #181818;
        border-radius: 0 0 1.2em 1.2em;
        box-shadow: 0 8px 32px #00000044;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 1.2em 0.5em 1.5em 0.5em;
        gap: 1.1em;
        z-index: 99;
        transition: all 0.25s cubic-bezier(.4,0,.2,1);
    }
    .navbar__menu.open {
        display: flex;
        animation: navbarMenuFadeIn 0.25s;
    }
    @keyframes navbarMenuFadeIn {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }
    .navbar__link {
        font-size: 1.18em;
        padding: 1em 1.2em;
        border-radius: 0.7em;
        text-align: left;
        background: none;
        color: #fff;
        font-weight: 600;
        transition: background 0.18s, color 0.18s;
    }
    .navbar__link.active, .navbar__link:hover {
        background: #222;
        color: #ff6600 !important;
    }
    .navbar__lang-toggle {
        width: 100%;
        display: flex;
        justify-content: center;
        gap: 1.2em;
        margin-top: 0.7em;
        margin-bottom: 0.2em;
    }
    .lang-btn {
        font-size: 1.08em;
        padding: 0.7em 1.2em;
        border-radius: 2em;
        background: #111;
        color: #ff6600;
        font-weight: 700;
        border: none;
        transition: background 0.18s, color 0.18s;
    }
    .lang-btn.active, .lang-btn:hover {
        background: #ff6600;
        color: #fff;
    }
    .lang-sep {
        color: #444;
        font-size: 1.2em;
        margin: 0 0.3em;
    }
}

/* === DİL SEÇİCİ BUTON (TOGGLE) === */
.navbar__lang-toggle {
    margin-left: 2rem;
    display: flex;
    align-items: center;
    gap: 0.2em;
    font-size: 1em;
    user-select: none;
}
.lang-btn {
    color: #ff6600;
    background: none;
    border: none;
    outline: none;
    font-weight: 600;
    font-size: 1em;
    padding: 0.18em 0.9em;
    border-radius: 2em;
    cursor: pointer;
    transition: background 0.18s, color 0.18s;
    text-decoration: none;
    display: inline-block;
    letter-spacing: 0.03em;
}
.lang-btn.active {
    background: #ff6600;
    color: #fff;
    box-shadow: 0 2px 8px #ff660033;
    cursor: default;
}
.lang-btn:not(.active):hover {
    background: #181818;
    color: #fff;
}
.lang-sep {
    color: #444;
    font-size: 1.1em;
    margin: 0 0.1em;
    user-select: none;
}
@media (max-width: 700px) {
    .navbar__lang-toggle {
        margin-left: 0;
        margin-top: 0.5rem;
        width: 100%;
        justify-content: flex-end;
        font-size: 0.97em;
    }
    .lang-btn {
        padding: 0.15em 0.7em;
        font-size: 0.97em;
    }
}

/* === HERO NAVBAR ARASI BOŞLUK YOK === */
.hero,
.hero--bgfull {
    margin-top: 0 !important;
    padding-top: 0 !important;
}
.container {
    margin-top: 0 !important;
}

/* === HERO FULL BG === */
.hero--bgfull {
    position: relative;
    min-height: 400px;
    height: auto;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('https://images.unsplash.com/photo-1464983953574-0892a716854b?auto=format&fit=crop&w=1600&q=80') center center/cover no-repeat;
    overflow: hidden;
    margin-bottom: 2.5rem;
    padding: 0;
    max-width: initial;
}
.hero__overlay {
    position: absolute;
    left: 0; top: 0; right: 0; bottom: 0;
    width: 100%; height: 100%;
    background: linear-gradient(120deg, #000000cc 60%, #1a0900cc 100%);
    opacity: 0.72;
    z-index: 1;
}
.hero__center {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4.5rem 1.5rem 4.5rem 1.5rem;
}
.hero__title {
    font-size: 3.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.1rem;
    letter-spacing: 0.01em;
    line-height: 1.13;
    text-shadow: 0 2px 16px #00000033;
}
.hero__desc {
    font-size: 1.35rem;
    color: #fff;
    opacity: 0.96;
    margin-bottom: 2.2rem;
    line-height: 1.6;
    text-shadow: 0 1px 8px #00000022;
}
.hero__cta {
    font-size: 1.1rem;
    padding: 1rem 2.2rem;
    font-weight: 700;
    border-radius: 2em;
    box-shadow: 0 4px 24px #ff660033;
    margin-top: 0.5rem;
    letter-spacing: 0.03em;
    transition: transform 0.18s, box-shadow 0.18s;
    background: #fff;
    color: #ff6600;
}
.hero__cta:hover {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 8px 32px #ff660055;
    background: #ff6600;
    color: #fff;
}
@media (max-width: 900px) {
    .hero--bgfull {
        min-height: 320px;
        height: auto;
    }
    .hero__title {
        font-size: 2.1rem;
    }
    .hero__desc {
        font-size: 1.08rem;
    }
    .hero__center {
        padding: 2.2rem 0.7rem 2.2rem 0.7rem;
    }
}
@media (max-width: 600px) {
    .hero--bgfull {
        min-height: 340px; /* Eskisi: 220px */
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
        height: auto;
    }
    .hero__split {
        display: flex !important;
        flex-direction: column !important;
    }
    .hero__left {
        order: 1 !important;
    }
    .hero__right {
        order: 2 !important;
    }
    .hero__title {
        font-size: 1.5rem;
    }
    .hero__desc {
        font-size: 1.05rem;
    }
    .quote-box {
        padding: 1.5rem 0.7rem 1.5rem 0.7rem;
    }
}

/* === HERO SPLIT === */
.hero__split {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3vw;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
    padding: 4.5rem 1.5rem 4.5rem 1.5rem;
}
.hero__left {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-width: 280px;
    max-width: 520px;
    z-index: 2;
    text-align: left;
}
.hero__right {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 320px;
    max-width: 480px;
    z-index: 2;
}
.hero__img-large {
    width: 100%;
    max-width: 540px;
    min-width: 220px;
    height: auto;
    border-radius: 2.5em 2.5em 3.5em 3.5em/2.5em 2.5em 4em 4em;
    object-fit: cover;
    box-shadow: 0 8px 32px #00000033;
    background: #222;
    border: 2.5px solid #ff660033;
    transition: transform 0.18s, box-shadow 0.18s;
}
.hero__img-large:hover {
    transform: scale(1.025) rotate(-1deg);
    box-shadow: 0 16px 48px #ff660044;
}
.hero__title {
    font-size: 2.7rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.1rem;
    letter-spacing: 0.01em;
    line-height: 1.13;
    text-shadow: 0 2px 16px #00000033;
}
.hero__desc {
    font-size: 1.25rem;
    color: #fff;
    opacity: 0.92;
    margin-bottom: 2.2rem;
    line-height: 1.6;
    text-shadow: 0 1px 8px #00000022;
}
.hero__cta {
    font-size: 1.15rem;
    padding: 1rem 2.2rem;
    font-weight: 700;
    border-radius: 2em;
    box-shadow: 0 4px 24px #ff660033;
    margin-top: 0.5rem;
    letter-spacing: 0.03em;
    transition: transform 0.18s, box-shadow 0.18s;
}
.hero__cta:hover {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 8px 32px #ff660055;
}
@media (max-width: 1100px) {
    .hero__split {
        gap: 1vw;
    }
    .hero__left, .hero__right {
        max-width: 420px;
    }
    .hero__img-large {
        max-width: 380px;
    }
}
@media (max-width: 800px) {
    .hero__split {
        flex-direction: column;
        gap: 1.5rem;
        padding: 2.2rem 0.7rem 2.2rem 0.7rem;
    }
    .hero__left, .hero__right {
        max-width: 100%;
        min-width: 0;
        align-items: center;
        text-align: center;
    }
    .hero__img-large {
        max-width: 96vw;
        min-width: 0;
        border-radius: 1.2em;
    }
}

/* === HERO GÖRSEL === */
.hero__img-bg {
    position: absolute;
    right: 6vw;
    bottom: 40px;
    z-index: 2;
    max-width: 420px;
    width: 32vw;
    min-width: 180px;
    pointer-events: none;
    opacity: 0.93;
    filter: drop-shadow(0 8px 32px #00000033);
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}
.hero__img {
    width: 100%;
    height: auto;
    border-radius: 1.5em 1.5em 2.5em 2.5em/2em 2em 3em 3em;
    object-fit: cover;
    box-shadow: 0 8px 32px #00000033;
    background: #222;
    border: 2px solid #ff660022;
}
@media (max-width: 900px) {
    .hero__img-bg {
        right: 2vw;
        max-width: 260px;
        width: 38vw;
        min-width: 120px;
        bottom: 20px;
    }
}
@media (max-width: 600px) {
    .hero__img-bg {
        position: static;
        margin: 1.2rem auto 0 auto;
        width: 90vw;
        max-width: 320px;
        min-width: 0;
        justify-content: center;
        align-items: center;
        display: flex;
    }
    .hero__img {
        border-radius: 1.2em;
    }
}

@media (max-width: 900px) {
    .hero__title {
        font-size: 2.1rem;
    }
    .hero__desc {
        font-size: 1.08rem;
    }
    .hero__content {
        padding: 3.2rem 0.7rem 1.5rem 0.7rem;
    }
}
@media (max-width: 600px) {
    .hero {
        min-height: 38vh;
    }
    .hero__title {
        font-size: 1.35rem;
    }
    .hero__desc {
        font-size: 0.98rem;
    }
    .hero__content {
        padding: 2.2rem 0.3rem 1.2rem 0.3rem;
    }
    .hero__wave {
        height: 60px;
    }
}

/* === TEKLİF FORMU (QUOTE) === */
.quote-section {
    width: 100%;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    padding: 2.5rem 0 2.5rem 0;
}
.quote-box {
    background: #111;
    border-radius: 1.5em;
    box-shadow: 0 4px 32px #00000033;
    padding: 2.5rem 2.2rem 2.2rem 2.2rem;
    max-width: 420px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.quote-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ff6600;
    margin-bottom: 0.7rem;
    text-align: center;
}
.quote-desc {
    color: #fff;
    opacity: 0.85;
    font-size: 1.08rem;
    margin-bottom: 2rem;
    text-align: center;
}
.quote-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}
.quote-form label {
    display: flex;
    flex-direction: column;
    font-size: 1rem;
    color: #fff;
    font-weight: 500;
    gap: 0.3rem;
}
.quote-form label span {
    margin-bottom: 0.2rem;
    color: #ff6600;
    font-size: 1.01em;
    font-weight: 600;
}
.quote-form input[type="text"],
.quote-form input[type="number"],
.quote-form input[type="tel"],
.quote-form input[type="email"] {
    padding: 0.85em 1em;
    border: 1.5px solid #222;
    border-radius: 0.7em;
    background: #181818;
    color: #fff;
    font-size: 1.08em;
    transition: border 0.18s, box-shadow 0.18s;
    outline: none;
}
.quote-form input:focus {
    border: 1.5px solid #ff6600;
    box-shadow: 0 0 0 2px #ff660033;
}
.quote-btn {
    background: #ff6600;
    color: #fff;
    border: none;
    padding: 0.95em 2em;
    border-radius: 2em;
    font-size: 1.1em;
    font-weight: 700;
    cursor: pointer;
    margin-top: 0.7rem;
    transition: background 0.18s, color 0.18s, box-shadow 0.18s;
    box-shadow: 0 2px 12px #ff660033;
}
.quote-btn:hover {
    background: #fff;
    color: #ff6600;
    box-shadow: 0 4px 24px #ff660055;
}
@media (max-width: 600px) {
    .quote-box {
        padding: 1.2rem 0.5rem 1.2rem 0.5rem;
        max-width: 98vw;
    }
    .quote-title {
        font-size: 1.3rem;
    }
    .quote-desc {
        font-size: 0.98rem;
    }
}

/* === TEKLİF FORMU 2 KOLON & PREMIUM === */
.quote-form--grid {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.1rem;
    width: 100%;
}
.form-row:last-child {
    grid-template-columns: 1fr;
}
.input-group {
    background: #181818;
    border-radius: 0.7em;
    border: 1.5px solid #222;
    padding: 0.2em 0.7em 0.2em 0.7em;
    display: flex;
    align-items: center;
    gap: 0.7em;
    transition: border 0.18s, box-shadow 0.18s;
    margin-bottom: 0;
    position: relative;
    min-height: 54px;
}
.input-group:focus-within {
    border: 1.5px solid #ff6600;
    box-shadow: 0 0 0 2px #ff660033;
}
.input-icon.svg-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 2.2em;
    font-size: 1.3em;
    color: #ff6600;
    opacity: 0.95;
    margin-right: 0.2em;
}
.input-group input {
    flex: 1 1 0;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.08em;
    padding: 0.85em 0.2em;
    outline: none;
    transition: color 0.18s;
}
.input-group input::placeholder {
    color: #888;
    opacity: 1;
    font-size: 0.98em;
}
.input-group span:last-child {
    color: #ff6600;
    font-size: 0.98em;
    font-weight: 600;
    margin-left: 0.7em;
    min-width: 4.2em;
    opacity: 0.85;
}
@media (max-width: 900px) {
    .form-row {
        gap: 0.5rem;
    }
}
@media (max-width: 700px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    .input-group {
        min-height: 44px;
        padding: 0.1em 0.4em 0.1em 0.4em;
        gap: 0.4em;
    }
    .input-group input {
        font-size: 0.98em;
        padding: 0.65em 0.1em;
    }
    .input-icon.svg-icon {
        font-size: 1.08em;
        min-width: 1.2em;
    }
    .input-group span:last-child {
        font-size: 0.93em;
        min-width: 3.2em;
    }
}

/* === TEK KOLON PREMIUM FORM === */
.premium-form-box {
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
    padding: 2.5rem 2rem 2.2rem 2rem;
    background: #111;
    border-radius: 1.7em;
    box-shadow: 0 4px 32px #00000033;
}
.premium-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.premium-label {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    font-size: 1rem;
    color: #fff;
    font-weight: 500;
}
.premium-label-text {
    color: #ff6600;
    font-size: 1.08em;
    font-weight: 700;
    margin-bottom: 0.1em;
    margin-left: 0.1em;
}
.premium-input-group {
    display: flex;
    align-items: center;
    background: #181818;
    border-radius: 0.7em;
    border: 1.5px solid #222;
    padding: 0.2em 0.7em 0.2em 0.7em;
    gap: 0.7em;
    transition: border 0.18s, box-shadow 0.18s;
    min-height: 54px;
}
.premium-input-group:focus-within {
    border: 1.5px solid #ff6600;
    box-shadow: 0 0 0 2px #ff660033;
}
.premium-input-group .input-icon.svg-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 2.2em;
    font-size: 1.3em;
    color: #ff6600;
    opacity: 0.95;
    margin-right: 0.2em;
}
.premium-input-group input {
    flex: 1 1 0;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.08em;
    padding: 0.85em 0.2em;
    outline: none;
    transition: color 0.18s;
}
.premium-input-group input::placeholder {
    color: #888;
    opacity: 1;
    font-size: 0.98em;
}
.premium-btn {
    width: 100%;
    background: #ff6600;
    color: #fff;
    border: none;
    padding: 1.1em 0;
    border-radius: 2em;
    font-size: 1.15em;
    font-weight: 700;
    cursor: pointer;
    margin-top: 0.7rem;
    transition: background 0.18s, color 0.18s, box-shadow 0.18s;
    box-shadow: 0 2px 12px #ff660033;
    letter-spacing: 0.03em;
}
.premium-btn:hover {
    background: #fff;
    color: #ff6600;
    box-shadow: 0 4px 24px #ff660055;
}
@media (max-width: 600px) {
    .premium-form-box {
        padding: 1.2rem 0.5rem 1.2rem 0.5rem;
        max-width: 98vw;
    }
    .premium-label-text {
        font-size: 1em;
    }
    .premium-input-group {
        min-height: 44px;
        padding: 0.1em 0.4em 0.1em 0.4em;
        gap: 0.4em;
    }
    .premium-input-group .input-icon.svg-icon {
        font-size: 1.08em;
        min-width: 1.2em;
    }
    .premium-input-group input {
        font-size: 0.98em;
        padding: 0.65em 0.1em;
    }
}

/* === NUMBER INPUT OKLARINI KESİN GİZLE === */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none !important;
  appearance: none !important;
  margin: 0 !important;
}
input[type="number"] {
  -moz-appearance: textfield !important;
  appearance: textfield !important;
}

/* === FOOTER MODERN & PREMIUM === */
.footer {
    background: linear-gradient(120deg, #181818 70%, #222 100%);
    color: #fff;
    padding: 2.7rem 0 1.3rem 0;
    margin-top: 3rem;
    font-size: 1.07rem;
    border-top-left-radius: 1.5em;
    border-top-right-radius: 1.5em;
    box-shadow: 0 -2px 32px #00000033;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}
.footer__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto 1.5rem auto;
    gap: 2.7rem;
    flex-wrap: wrap;
}
.footer__brand {
    flex: 2 1 220px;
    display: flex;
    flex-direction: column;
    gap: 0.7em;
}
.footer__logo {
    font-size: 1.7rem;
    font-weight: bold;
    color: #ff6600;
    letter-spacing: 0.03em;
    margin-bottom: 0.2em;
    display: flex;
    align-items: center;
    gap: 0.4em;
}
.footer__desc {
    color: #fff;
    opacity: 0.85;
    font-size: 1.07em;
    max-width: 340px;
    line-height: 1.6;
}
.footer__contact {
    flex: 1 1 180px;
    display: flex;
    flex-direction: column;
    gap: 0.3em;
    font-size: 1em;
    color: #fff;
    margin-top: 0.5em;
}
.footer__contact b {
    color: #ff6600;
    font-weight: 600;
}
.footer__social {
    flex: 1 1 140px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.7em;
    margin-top: 0.5em;
}
.footer__social-title {
    color: #ff6600;
    font-size: 1.08em;
    font-weight: 700;
    margin-bottom: 0.3em;
    letter-spacing: 0.01em;
}
.footer__social a img {
    filter: grayscale(0.2) brightness(1.1) drop-shadow(0 2px 8px #ff660033);
    transition: filter 0.18s, transform 0.18s;
    margin-right: 0.2em;
}
.footer__social a:hover img {
    filter: grayscale(0) brightness(1.2) drop-shadow(0 4px 16px #ff660055);
    transform: scale(1.13) rotate(-6deg);
}
.footer__bottom {
    text-align: center;
    color: #aaa;
    font-size: 1em;
    margin-top: 1.7rem;
    letter-spacing: 0.01em;
    opacity: 0.92;
}
.footer::before {
    content: '';
    position: absolute;
    left: -30vw;
    top: -60px;
    width: 80vw;
    height: 180px;
    background: radial-gradient(circle at 30% 40%, #ff660022 0%, transparent 80%);
    z-index: 0;
    pointer-events: none;
}
@media (max-width: 900px) {
    .footer__top {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.7rem;
    }
    .footer__social {
        align-items: flex-start;
        margin-top: 0.7em;
    }
}
@media (max-width: 600px) {
    .footer {
        padding: 1.2rem 0 0.7rem 0;
        font-size: 0.98rem;
        border-top-left-radius: 0.7em;
        border-top-right-radius: 0.7em;
    }
    .footer__desc {
        font-size: 0.97em;
        max-width: 98vw;
    }
    .footer__top {
        gap: 1.1rem;
    }
    .footer__social {
        align-items: flex-start;
    }
}

/* === SIFIRDAN PREMIUM FOOTER === */
.footer--super {
    background: #000;
    color: #fff;
    padding: 3.2rem 0 1.5rem 0;
    margin-top: 3rem;
    font-size: 1.09rem;
    border-top-left-radius: 2em;
    border-top-right-radius: 2em;
    box-shadow: 0 -2px 32px #00000033;
    position: relative;
    overflow: hidden;
}
.footer-super__main {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto 1.7rem auto;
    gap: 3.2rem;
    flex-wrap: wrap;
}
.footer-super__brand {
    flex: 2 1 260px;
    display: flex;
    flex-direction: column;
    gap: 1.1em;
}
.footer-super__logo {
    font-size: 2.2rem;
    font-weight: bold;
    color: #ff6600;
    letter-spacing: 0.04em;
    margin-bottom: 0.2em;
    display: flex;
    align-items: center;
    gap: 0.5em;
    text-shadow: 0 2px 16px #ff660033;
}
.footer-super__logo span {
    color: #fff;
    font-weight: 800;
    font-size: 1.1em;
    letter-spacing: 0.04em;
}
.footer-super__desc {
    color: #fff;
    opacity: 0.88;
    font-size: 1.13em;
    max-width: 360px;
    line-height: 1.7;
    font-weight: 400;
}
.footer-super__contact {
    flex: 1 1 200px;
    display: flex;
    flex-direction: column;
    gap: 0.7em;
    font-size: 1.07em;
    color: #fff;
    margin-top: 0.5em;
    background: rgba(255,102,0,0.07);
    border-radius: 1.2em;
    padding: 1.1em 1.2em;
    box-shadow: 0 2px 16px #ff660022;
}
.footer-super__contact-title {
    display: flex;
    align-items: center;
    gap: 0.7em;
    color: #ff6600;
    font-weight: 600;
    font-size: 1.08em;
    letter-spacing: 0.01em;
}
.footer-super__contact-title svg {
    display: inline-block;
    vertical-align: middle;
}
.footer-super__social {
    flex: 1 1 160px;
    display: flex;
    align-items: center;
    gap: 1.2em;
    justify-content: flex-end;
    margin-top: 0.5em;
}
.footer-super__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #181818 60%, #ff6600 100%);
    border-radius: 50%;
    box-shadow: 0 2px 16px #ff660033;
    transition: background 0.18s, transform 0.18s, box-shadow 0.18s;
    border: 2.5px solid #181818;
    position: relative;
}
.footer-super__icon img {
    width: 28px;
    height: 28px;
    filter: grayscale(0.2) brightness(1.1) drop-shadow(0 2px 8px #ff660033);
    transition: filter 0.18s, transform 0.18s;
}
.footer-super__icon:hover {
    background: linear-gradient(135deg, #ff6600 60%, #181818 100%);
    transform: scale(1.13) rotate(-6deg);
    box-shadow: 0 8px 32px #ff660055;
}
.footer-super__icon:hover img {
    filter: grayscale(0) brightness(1.2) drop-shadow(0 4px 16px #ff660055);
}
.footer-super__bottom {
    text-align: center;
    color: #aaa;
    font-size: 1.04em;
    margin-top: 2.2rem;
    letter-spacing: 0.01em;
    opacity: 0.93;
    font-weight: 500;
}
.footer--super::before {
    content: '';
    position: absolute;
    left: -30vw;
    top: -60px;
    width: 80vw;
    height: 180px;
    background: radial-gradient(circle at 30% 40%, #ff660022 0%, transparent 80%);
    z-index: 0;
    pointer-events: none;
}
@media (max-width: 900px) {
    .footer-super__main {
        flex-direction: column;
        align-items: flex-start;
        gap: 2.2rem;
    }
    .footer-super__social {
        justify-content: flex-start;
        margin-top: 1.2em;
    }
}
@media (max-width: 600px) {
    .footer--super {
        padding: 1.2rem 0 0.7rem 0;
        font-size: 0.99rem;
        border-top-left-radius: 1em;
        border-top-right-radius: 1em;
    }
    .footer-super__desc {
        font-size: 0.97em;
        max-width: 98vw;
    }
    .footer-super__main {
        gap: 1.3rem;
    }
    .footer-super__social {
        justify-content: flex-start;
        gap: 0.7em;
    }
    .footer-super__icon {
        width: 40px;
        height: 40px;
    }
    .footer-super__icon img {
        width: 22px;
        height: 22px;
    }
}

/* === MINIMAL FOOTER === */
.footer--minimal {
    background: #000;
    color: #fff;
    padding: 1.2rem 0 0.5rem 0;
    font-size: 1rem;
    border-top: 1px solid #181818;
    margin-top: 2.5rem;
}
.footer-minimal__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 1.2rem;
    flex-wrap: wrap;
    padding: 0 1rem;
}
.footer-minimal__brand {
    display: flex;
    align-items: center;
    gap: 0.7em;
}
.footer-minimal__logo {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ff6600;
    letter-spacing: 0.03em;
}
.footer-minimal__desc {
    color: #fff;
    opacity: 0.7;
    font-size: 0.98em;
    max-width: 220px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.footer-minimal__contact {
    color: #aaa;
    font-size: 0.97em;
    white-space: nowrap;
    opacity: 0.85;
}
.footer-minimal__social {
    display: flex;
    align-items: center;
    gap: 0.7em;
}
.footer-minimal__social a img {
    filter: grayscale(0.7) brightness(1.1);
    transition: filter 0.18s, transform 0.18s;
    opacity: 0.8;
}
.footer-minimal__social a:hover img {
    filter: grayscale(0) brightness(1.2) drop-shadow(0 2px 8px #ff660055);
    opacity: 1;
    transform: scale(1.13);
}
.footer-minimal__bottom {
    text-align: center;
    color: #666;
    font-size: 0.93em;
    margin-top: 0.7rem;
    letter-spacing: 0.01em;
    opacity: 0.7;
}
@media (max-width: 700px) {
    .footer-minimal__row {
        flex-direction: column;
        align-items: center;
        gap: 0.7rem;
        padding: 0 0.3rem;
    }
    .footer-minimal__brand, .footer-minimal__contact, .footer-minimal__social {
        justify-content: center;
        white-space: normal;
        text-align: center;
    }
    .footer-minimal__desc {
        max-width: 98vw;
        white-space: normal;
    }
}

/* === SERVICES GRID (HERO ALTINDA) === */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 2.5rem 2.5rem;
  max-width: 1300px;
  margin: 3.5rem auto 0 auto;
  padding: 0 1.5rem 3.5rem 1.5rem;
}
.service-box {
  background: #111;
  border-radius: 1.3em;
  box-shadow: 0 8px 32px #00000033, 0 2px 12px #ff660022;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 2.3em 2em 2em 2em;
  border-top: 5px solid #ff6600;
  transition: box-shadow 0.18s, transform 0.18s, border-color 0.18s;
  font-family: 'Segoe UI', Arial, sans-serif;
}
.service-box:hover {
  box-shadow: 0 16px 48px #ff660055, 0 4px 24px #ff660033;
  transform: translateY(-4px) scale(1.03);
  border-top: 5px solid #fff;
}
.service-img {
  width: 100%;
  max-width: 340px;
  height: 140px;
  object-fit: cover;
  border-radius: 0.9em;
  margin-bottom: 1.2em;
  background: #222;
  align-self: center;
  box-shadow: 0 2px 12px #00000018;
}
.service-title {
  color: #ff6600;
  font-size: 1.22rem;
  font-weight: 700;
  margin-bottom: 0.7em;
  margin-top: 0;
  letter-spacing: 0.01em;
}
.service-desc {
  color: #fff;
  font-size: 1.04rem;
  opacity: 0.93;
  margin-bottom: 1.3em;
  margin-top: 0;
  line-height: 1.6;
}
.service-btn {
  background: #ff6600;
  color: #fff;
  border: none;
  padding: 0.85em 2em;
  border-radius: 2em;
  font-size: 1.05em;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  box-shadow: 0 2px 12px #ff660033;
  letter-spacing: 0.03em;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  margin-top: auto;
}
.service-btn:hover {
  background: #fff;
  color: #ff6600;
  box-shadow: 0 4px 24px #ff660055;
}
@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 2rem;
    max-width: 98vw;
  }
}
@media (max-width: 700px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem 0;
    padding: 0 0.5rem 2.5rem 0.5rem;
  }
  .service-img {
    max-width: 98vw;
    height: 90px;
  }
  .service-box {
    padding: 1.2em 0.7em 1.2em 0.7em;
  }
  .service-title {
    font-size: 1.08rem;
  }
  .service-desc {
    font-size: 0.97rem;
  }
  .service-btn {
    font-size: 0.97em;
    padding: 0.7em 1.2em;
  }
}

/* === FLOATING CONTACT BUBBLES === */
.floating-bubbles {
  position: fixed;
  bottom: 2.2rem;
  right: 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  z-index: 9999;
}
.bubble {
  position: relative;
  min-width: 60px;
  height: 56px;
  border-radius: 2em;
  background: rgba(20,20,20,0.82);
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 24px #00000044, 0 2px 8px #ff660033;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 1.5rem;
  color: #ff6600;
  border: 2.5px solid #ff6600;
  transition: box-shadow 0.18s, background 0.18s, color 0.18s, border 0.18s;
  cursor: pointer;
  text-decoration: none;
  overflow: visible;
  padding: 0 1.3em 0 0.9em;
}
.bubble::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 110px;
  height: 56px;
  border-radius: 2em;
  background: radial-gradient(rgba(255,102,0,0.13) 0%, rgba(255,102,0,0.07) 60%, transparent 100%);
  z-index: 0;
  animation: bubble-ping 1.5s cubic-bezier(0.4,0,0.6,1) infinite;
  pointer-events: none;
}
.bubble-icon {
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.7em;
  font-size: 1.5em;
}
.bubble-label {
  z-index: 1;
  font-size: 1.08em;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.01em;
  font-family: 'Segoe UI', Arial, sans-serif;
  white-space: nowrap;
  opacity: 0.96;
  transition: color 0.18s;
}
.bubble-phone {
  background: rgba(20,20,20,0.82);
  color: #ff6600;
  border-color: #ff6600;
}
.bubble-whatsapp {
  background: rgba(20,20,20,0.82);
  color: #25d366;
  border-color: #25d366;
}
.bubble-whatsapp .bubble-label {
  color: #25d366;
}
.bubble-whatsapp::before {
  background: radial-gradient(rgba(37,211,102,0.13) 0%, rgba(37,211,102,0.07) 60%, transparent 100%);
}
.bubble:hover {
  box-shadow: 0 8px 32px #ff660055, 0 4px 16px #25d36655;
  background: rgba(30,30,30,0.96);
  border-color: #fff;
  color: #fff;
}
.bubble:hover .bubble-label {
  color: #ff6600;
}
.bubble-whatsapp:hover .bubble-label {
  color: #25d366;
}
@keyframes bubble-ping {
  0% {
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(1);
  }
  70% {
    opacity: 0.15;
    transform: translate(-50%, -50%) scale(1.25);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.4);
  }
}
@media (max-width: 700px) {
  .floating-bubbles {
    bottom: 1.1rem;
    right: 1.1rem;
    gap: 0.7rem;
  }
  .bubble {
    min-width: 48px;
    height: 44px;
    font-size: 1.1rem;
    padding: 0 0.7em 0 0.7em;
  }
  .bubble::before {
    width: 70px;
    height: 44px;
  }
  .bubble-label {
    display: none;
  }
}

/* === ABOUT US PAGE === */
.about-main {
  max-width: 900px;
  margin: 3.5rem auto 2.5rem auto;
  background: #000;
  border-radius: 1.7em;
  box-shadow: 0 8px 48px #ff660033, 0 2px 16px #00000044;
  padding: 2.9em 2.5em 2.9em 2.5em;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.about-main::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 1.7em;
  pointer-events: none;
  box-shadow: 0 0 0 6px #ff660022, 0 0 48px 0 #ff660033;
  z-index: 0;
}
.about-title {
  color: #ff6600;
  font-size: 2.3rem;
  font-weight: 900;
  margin-bottom: 1.1rem;
  letter-spacing: 0.01em;
  font-family: 'Segoe UI', Arial, sans-serif;
  text-shadow: 0 2px 16px #ff660033;
}
.about-desc {
  color: #fff;
  font-size: 1.22rem;
  opacity: 0.97;
  margin-bottom: 2.7rem;
  line-height: 1.7;
  z-index: 1;
  position: relative;
}
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-top: 1.7rem;
  z-index: 1;
  position: relative;
}
.about-value {
  background: #000;
  border-radius: 1.2em;
  box-shadow: 0 4px 32px #ff660033, 0 2px 8px #00000033;
  padding: 2.2em 1.3em 2.2em 1.3em;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 2.5px solid #ff660033;
  transition: box-shadow 0.18s, transform 0.18s, border 0.18s;
  position: relative;
  overflow: hidden;
}
.about-value:hover {
  box-shadow: 0 12px 48px #ff660055, 0 4px 16px #ff660033;
  transform: translateY(-4px) scale(1.04);
  border: 2.5px solid #ff6600;
}
.about-icon {
  font-size: 2.7rem;
  color: #ff6600;
  margin-bottom: 0.8em;
  display: block;
  filter: drop-shadow(0 0 12px #ff660055);
  transition: filter 0.18s;
}
.about-value:hover .about-icon {
  filter: drop-shadow(0 0 24px #ff6600cc);
}
.about-value-title {
  font-size: 1.18em;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.3em;
  letter-spacing: 0.01em;
  font-family: 'Segoe UI', Arial, sans-serif;
}
.about-value-desc {
  color: #eee;
  font-size: 1.04em;
  opacity: 0.95;
  font-family: 'Segoe UI', Arial, sans-serif;
}
@media (max-width: 900px) {
  .about-main {
    padding: 1.5em 0.7em 1.5em 0.7em;
  }
  .about-values {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* === MOVING PROCESS SECTION === */
.process-section {
  background: #000;
  padding: 3.5rem 0 3.5rem 0;
  margin: 0 auto 0 auto;
  max-width: 1300px;
}
.process-title {
  color: #ff6600;
  font-size: 2.1rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 2.7rem;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 16px #ff660033;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: stretch;
}
.process-step {
  background: #111;
  border-radius: 1.3em;
  box-shadow: 0 8px 32px #00000033, 0 2px 12px #ff660022;
  padding: 2.2em 1.7em 2em 1.7em;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 210px;
  max-width: 260px;
  flex: 1 1 210px;
  border-top: 5px solid #ff6600;
  transition: box-shadow 0.18s, transform 0.18s, border-color 0.18s;
  position: relative;
  text-align: center;
}
.process-step:hover {
  box-shadow: 0 16px 48px #ff660055, 0 4px 24px #ff660033;
  transform: translateY(-4px) scale(1.03);
  border-top: 5px solid #fff;
}
.process-icon {
  font-size: 2.7rem;
  color: #ff6600;
  margin-bottom: 1.1em;
  display: block;
  filter: drop-shadow(0 0 12px #ff660055);
  transition: filter 0.18s;
}
.process-step:hover .process-icon {
  filter: drop-shadow(0 0 24px #ff6600cc);
}
.process-step-title {
  font-size: 1.18em;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.3em;
  letter-spacing: 0.01em;
  font-family: 'Segoe UI', Arial, sans-serif;
}
.process-step-desc {
  color: #eee;
  font-size: 1.04em;
  opacity: 0.95;
  font-family: 'Segoe UI', Arial, sans-serif;
}
@media (max-width: 1100px) {
  .process-steps {
    gap: 1.2rem;
    max-width: 98vw;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 700px) {
  .process-steps {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    padding: 0 0.5rem;
  }
}

/* === JOBS GALLERY SECTION === */
.jobs-gallery {
  background: #000;
  padding: 3.5rem 0 3.5rem 0;
  margin: 0 auto 0 auto;
  max-width: 1300px;
}
.jobs-gallery-title {
  color: #ff6600;
  font-size: 2.1rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 2.7rem;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 16px #ff660033;
}
.jobs-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.jobs-gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 1.2em;
  box-shadow: 0 4px 24px #00000033, 0 2px 8px #ff660022;
  background: #181818;
  border: 2px solid #222;
  transition: box-shadow 0.18s, transform 0.18s;
}
.jobs-gallery-grid img:hover {
  box-shadow: 0 8px 32px #ff660055, 0 4px 16px #ff660033;
  transform: scale(1.03);
}
@media (max-width: 1100px) {
  .jobs-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    max-width: 98vw;
  }
  .jobs-gallery-title {
    font-size: 1.4rem;
  }
}
@media (max-width: 700px) {
  .jobs-gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    padding: 0 0.5rem;
  }
  .jobs-gallery-title {
    font-size: 1.1rem;
  }
}

.jobs-gallery-btn-row {
  text-align: center;
  margin-top: 2.5rem;
}
.jobs-gallery-btn {
  background: #ff6600;
  color: #fff;
  border: none;
  padding: 1.1em 2.5em;
  border-radius: 2em;
  font-size: 1.15em;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  box-shadow: 0 2px 12px #ff660033;
  letter-spacing: 0.03em;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}
.jobs-gallery-btn:hover {
  background: #fff;
  color: #ff6600;
  box-shadow: 0 4px 24px #ff660055;
}

/* === INFO BAR (NAVBAR ÜSTÜ) === */
.info-bar {
  width: 100%;
  background: #111;
  color: #fff;
  font-size: 1.04em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5em;
  padding: 0.5em 0.7em;
  box-shadow: 0 2px 12px #00000018;
  border-bottom: 1px solid #181818;
  z-index: 1001;
}
.info-bar__item {
  display: flex;
  align-items: center;
  gap: 0.2em;
  font-weight: 500;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.info-bar__item a {
  color: #ff6600;
  text-decoration: none;
  font-weight: 600;
}
.info-bar__item svg {
  display: inline-block;
  vertical-align: middle;
  min-width: 1.1em;
  min-height: 1.1em;
  margin-right: 0.4em;
}
@media (max-width: 700px) {
  .info-bar {
    flex-direction: column;
    gap: 0.5em;
    font-size: 0.97em;
    padding: 0.5em 0.2em;
  }
  .info-bar__item {
    justify-content: center;
    width: 100%;
  }
}

/* === SERVICE PAGE EXTRA & GALLERY === */
.service-extra {
  background: #181818;
  border-radius: 1.1em;
  box-shadow: 0 2px 16px #ff660022;
  margin: 2.2em 0 2.2em 0;
  padding: 1.5em 1.2em;
  font-size: 1.13em;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-align: center;
}
.service-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2em;
  margin: 0 auto 2.5em auto;
  max-width: 800px;
}
.service-gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 1em;
  box-shadow: 0 2px 16px #00000022;
  background: #222;
  border: 2px solid #222;
  transition: box-shadow 0.18s, transform 0.18s;
}
.service-gallery img:hover {
  box-shadow: 0 8px 32px #ff660055, 0 4px 16px #ff660033;
  transform: scale(1.03);
}
@media (max-width: 900px) {
  .service-gallery {
    grid-template-columns: 1fr;
    gap: 1.2em;
    max-width: 98vw;
  }
  .service-extra {
    font-size: 1em;
    padding: 1em 0.5em;
  }
}

/* === ADMIN PANEL CARDS & TABLE === */
.admin-card {
  background: #181818;
  border-radius: 1.2em;
  box-shadow: 0 2px 16px #ff660022;
  margin: 2.2em 0 2.2em 0;
  padding: 1.5em 1.2em;
  max-width: 900px;
  width: 100%;
}
.admin-card-title {
  color: #ff6600;
  font-size: 1.35em;
  font-weight: 700;
  margin-bottom: 1.1em;
  letter-spacing: 0.01em;
  text-align: left;
}
.admin-card-content {
  width: 100%;
  overflow-x: auto;
}
.admin-table {
  width: 100%;
  border-collapse: collapse;
  background: #111;
  color: #fff;
  font-size: 1em;
  border-radius: 0.7em;
  overflow: hidden;
  box-shadow: 0 1px 8px #00000022;
}
.admin-table th, .admin-table td {
  padding: 0.85em 0.7em;
  border-bottom: 1px solid #222;
  text-align: left;
}
.admin-table th {
  background: #181818;
  color: #ff6600;
  font-weight: 700;
  font-size: 1.05em;
}
.admin-table tr:last-child td {
  border-bottom: none;
}
@media (max-width: 700px) {
  .admin-card {
    padding: 1em 0.3em;
    font-size: 0.97em;
  }
  .admin-table th, .admin-table td {
    padding: 0.5em 0.3em;
    font-size: 0.97em;
  }
}

/* === ADMIN DASHBOARD === */
.dashboard-welcome {
  text-align: center;
  margin-bottom: 2.5em;
}
.dashboard-welcome h1 {
  color: #ff6600;
  font-size: 2.2em;
  font-weight: 900;
  margin-bottom: 0.5em;
}
.dashboard-cards {
  display: flex;
  gap: 2em;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5em;
}
.dashboard-card {
  background: #181818;
  border-radius: 1.2em;
  box-shadow: 0 2px 16px #ff660022;
  padding: 2em 2.5em;
  min-width: 180px;
  text-align: center;
  flex: 1 1 180px;
  max-width: 260px;
}
.dashboard-card-title {
  color: #aaa;
  font-size: 1.1em;
  font-weight: 600;
  margin-bottom: 0.7em;
}
.dashboard-card-value {
  color: #ff6600;
  font-size: 2.1em;
  font-weight: 900;
  letter-spacing: 0.01em;
}
@media (max-width: 900px) {
  .dashboard-cards {
    flex-direction: column;
    gap: 1.2em;
    align-items: center;
  }
  .dashboard-card {
    padding: 1.2em 1em;
    min-width: 0;
    max-width: 98vw;
  }
}

.desktop-quote { display: block; }
.mobile-quote { display: none; }

@media (max-width: 700px) {
    .desktop-quote { display: none !important; }
    .mobile-quote { display: block !important; margin-top: 0 !important; padding-top: 0 !important; }
}

.site-logo {
    max-height: 56px;
    max-width: 180px;
    width: auto;
    height: auto;
    vertical-align: middle;
    border-radius: 0.3em;
    box-shadow: 0 2px 8px #00000022;
}

@media (max-width: 700px) {
    .site-logo {
        max-height: 70px;
        max-width: 90vw;
    }
}
 