/* ===================== İletişim Formu ===================== */
.iletisim-section {
    background: #fff;
    padding: 40px 0 32px 0;
}
.iletisim-section .container {
    max-width: 500px;
    margin: 0 auto;
    padding: 0 16px;
}
.iletisim-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 18px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.iletisim-form label {
    font-weight: 500;
    color: #222;
    margin-bottom: 2px;
}
.iletisim-form input,
.iletisim-form textarea {
    border: 1px solid #fcc00099;
    border-radius: 7px;
    padding: 10px 12px;
    font-size: 1rem;
    font-family: inherit;
    background: #f9f9f9;
    transition: border-color 0.2s;
}
.iletisim-form input:focus,
.iletisim-form textarea:focus {
    border-color: #fcc000;
    outline: none;
}
.btn-gonder {
    background: #fcc000;
    color: #222;
    border: none;
    border-radius: 7px;
    padding: 12px 0;
    font-size: 1.08rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 8px;
}
.btn-gonder:hover {
    background: #e0b200;
}
@media (max-width: 600px) {
    .iletisim-section {
        padding: 18px 0 10px 0;
    }
    .iletisim-section .container {
        padding: 0 4px;
    }
}
/* ===================== Hizmetler Sayfası ===================== */
.hizmetler-section {
    background: #f8f8f8;
    padding: 48px 0 32px 0;
    min-height: 70vh;
}
.hizmetler-section .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 16px;
}
.hizmetler-giris {
    font-size: 1.18rem;
    color: #333;
    margin-bottom: 32px;
    text-align: center;
    line-height: 1.7;
    font-weight: 400;
}
.hizmetler-listesi {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    margin-bottom: 40px;
}
.hizmet-kart {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px #fcc00022;
    padding: 32px 28px 24px 28px;
    flex: 1 1 260px;
    min-width: 260px;
    max-width: 340px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    animation: fadeInUp 1s cubic-bezier(.4,2,.6,1);
    opacity: 0;
    animation-fill-mode: forwards;
}
.hizmet-kart.animate-in {
    opacity: 1;
}
.hizmet-ikon {
    font-size: 2.5rem;
    color: #fcc000;
    margin-bottom: 12px;
    animation: hizmetIconPop 0.7s cubic-bezier(.7,.2,.3,1);
}
.hizmet-kart h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 16px;
    text-align: center;
}
.hizmet-kart ul {
    list-style: disc inside;
    color: #444;
    font-size: 1.08rem;
    text-align: left;
    padding-left: 0;
    margin: 0;
}
.hizmetler-onemli {
    background: #fffbe7;
    border-radius: 16px;
    box-shadow: 0 2px 12px #fcc00011;
    padding: 28px 22px 18px 22px;
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
    animation: fadeInUp 1s cubic-bezier(.4,2,.6,1);
    opacity: 0;
    animation-fill-mode: forwards;
}
.hizmetler-onemli h3 {
    color: #fcc000;
    font-size: 1.18rem;
    margin-bottom: 14px;
    font-weight: 700;
}
.hizmetler-onemli ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.hizmetler-onemli li {
    font-size: 1.08rem;
    color: #333;
    margin-bottom: 8px;
    padding-left: 0;
    position: relative;
}
@media (max-width: 900px) {
    .hizmetler-listesi {
        flex-direction: column;
        align-items: stretch;
        gap: 24px;
    }
    .hizmet-kart {
        max-width: 100%;
        width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }
}
@media (max-width: 600px) {
    .hizmetler-section {
        padding: 28px 0 16px 0;
    }
    .hizmetler-giris {
        font-size: 1.05rem;
        margin-bottom: 18px;
    }
    .hizmetler-onemli {
        padding: 16px 8px 10px 8px;
    }
    .hizmetler-listesi {
        gap: 16px;
    }
    .hizmet-kart {
        padding: 18px 6px 14px 6px;
        font-size: 0.98rem;
    }
}
@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}
@keyframes hizmetIconPop {
    0% { transform: scale(0.7) rotate(-10deg); opacity: 0; }
    60% { transform: scale(1.15) rotate(5deg); opacity: 1; }
    100% { transform: scale(1) rotate(0); opacity: 1; }
}
/* İletişim (Contact) Sayfası */
.contact-main {
    max-width: 1100px;
    margin: 48px auto 0 auto;
    padding: 0 16px 32px 16px;
    font-family: 'Roboto', Arial, sans-serif;
}
.contact-hero {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 4px 24px #fcc00022;
    margin-bottom: 40px;
    padding: 40px 32px 32px 32px;
    position: relative;
    animation: fadeInUp 1s cubic-bezier(.4,2,.6,1);
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
.contact-hero h1 {
    font-size: 2.1rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}
.contact-hero p {
    font-size: 1.13rem;
    color: #444;
    margin-bottom: 10px;
    line-height: 1.6;
    transition: color 0.2s;
}
.contact-info {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 24px #fcc00022;
    margin-bottom: 32px;
    padding: 32px 28px 24px 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    align-items: flex-start;
    animation: fadeInUp 1s cubic-bezier(.4,2,.6,1);
}
.contact-details {
    flex: 1 1 260px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    font-size: 1.08rem;
    color: #222;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: #222;
}
.contact-item i {
    color: #FCC000;
    font-size: 1.2em;
    min-width: 22px;
}
.contact-item a {
    color: #222;
    text-decoration: none;
    transition: color 0.2s;
}
.contact-item a:hover {
    color: #FCC000;
}
.contact-map {
    flex: 2 1 340px;
    min-width: 260px;
    max-width: 520px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px #fcc00011;
}
.contact-form-section {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 24px #fcc00022;
    margin-bottom: 32px;
    padding: 32px 28px 24px 28px;
    animation: fadeInUp 1s cubic-bezier(.4,2,.6,1);
}
.contact-form-section h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #FCC000;
    margin-bottom: 18px;
    letter-spacing: 0.2px;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 10px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.form-group label {
    font-weight: 500;
    color: #222;
    margin-bottom: 2px;
}
.form-group input,
.form-group textarea {
    border: 1.5px solid #fcc00055;
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 1.05rem;
    font-family: inherit;
    background: #fffbe6;
    color: #222;
    transition: border 0.2s, background 0.2s;
    resize: none;
}
.form-group input:focus,
.form-group textarea:focus {
    border: 1.5px solid #FCC000;
    background: #fff;
    outline: none;
}
.btn[type="submit"] {
    background: #FCC000;
    color: #222;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    padding: 12px 32px;
    font-size: 1.08rem;
    cursor: pointer;
    box-shadow: 0 2px 8px #fcc00022;
    transition: background 0.2s, color 0.2s;
}
.btn[type="submit"]:hover {
    background: #222;
    color: #FCC000;
}
@media (max-width: 900px) {
    .contact-main { padding: 0 2vw; }
    .contact-hero, .contact-info, .contact-form-section { padding: 24px 8vw 18px 8vw; }
    .contact-info { flex-direction: column; gap: 18px; }
    .contact-map { max-width: 100%; }
}
@media (max-width: 600px) {
    .contact-main { padding: 0 2vw; }
    .contact-hero, .contact-info, .contact-form-section { padding: 14px 2vw 10px 2vw; }
    .contact-hero h1 { font-size: 1.2rem; }
    .contact-form-section h2 { font-size: 1.05rem; }
    .form-group input, .form-group textarea { font-size: 0.98rem; padding: 7px 8px; }
}
/* Hizmetler sayfası hareketli iş makineleri */
/* Hizmetler sayfası hareketli iş makineleri - overflow fix */
.services-main {
    position: relative;
    overflow: hidden;
    min-height: 700px;
    max-height: 90vh;
    box-sizing: border-box;
}
.moving-machines {
    position: relative;
    width: 100%;
    height: 120px;
    max-height: 120px;
    min-height: 120px;
    pointer-events: none;
    z-index: 5;
    overflow: hidden;
    box-sizing: border-box;
}
.moving-machines .machine-svg {
    position: absolute;
    width: 48px; height: 32px;
    pointer-events: none;
    opacity: 0.92;
    filter: drop-shadow(0 2px 8px #fcc00033);
    transition: left 0.7s cubic-bezier(.7,2,.3,1), top 0.7s cubic-bezier(.7,2,.3,1), transform 0.2s;
    will-change: left, top;
    max-width: 60px;
    max-height: 40px;
    min-width: 30px;
    min-height: 20px;
}
@media (max-width: 700px) {
    .moving-machines .machine-svg { width: 32px; height: 20px; max-width: 36px; max-height: 24px; }
}
/* Hizmetler (Services) Sayfası */
.services-main {
    max-width: 1100px;
    margin: 48px auto 0 auto;
    padding: 0 16px 32px 16px;
    font-family: 'Roboto', Arial, sans-serif;
}
.services-hero {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 4px 24px #fcc00022;
    margin-bottom: 40px;
    padding: 40px 32px 32px 32px;
    position: relative;
    overflow: visible;
    animation: fadeInUp 1s cubic-bezier(.4,2,.6,1);
    transition: box-shadow 0.2s;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
.services-hero h1 {
    font-size: 2.1rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}
.services-hero p {
    font-size: 1.13rem;
    color: #444;
    margin-bottom: 10px;
    line-height: 1.6;
    transition: color 0.2s;
}
.services-list, .services-approach {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 24px #fcc00022;
    margin-bottom: 32px;
    padding: 32px 28px 24px 28px;
    animation: fadeInUp 1s cubic-bezier(.4,2,.6,1);
    transition: box-shadow 0.2s;
}
.services-list h2, .services-approach h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #FCC000;
    margin-bottom: 18px;
    letter-spacing: 0.2px;
}
.services-ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.services-ul > li {
    font-size: 1.13rem;
    color: #222;
    font-weight: 500;
    background: #fffbe6;
    border-radius: 14px;
    padding: 16px 18px 12px 18px;
    box-shadow: 0 2px 8px #fcc00011;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    position: relative;
    cursor: pointer;
}
.services-ul > li:hover {
    background: #fff3c1;
    color: #FCC000;
    box-shadow: 0 6px 24px #fcc00033;
    z-index: 2;
}
.services-ul > li ul {
    margin-top: 10px;
    padding-left: 18px;
    font-size: 1.01rem;
    color: #444;
}
.services-ul > li ul li {
    margin-bottom: 3px;
    list-style: disc inside;
    background: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    color: #444;
    font-weight: 400;
}
@media (max-width: 900px) {
    .services-main { padding: 0 2vw; }
    .services-hero, .services-list, .services-approach { padding: 24px 8vw 18px 8vw; }
}
@media (max-width: 600px) {
    .services-main { padding: 0 2vw; }
    .services-hero, .services-list, .services-approach { padding: 14px 2vw 10px 2vw; }
    .services-hero h1 { font-size: 1.2rem; }
    .services-list h2, .services-approach h2 { font-size: 1.05rem; }
    .services-ul > li { font-size: 0.98rem; padding: 8px 8px 6px 8px; }
}
/* Project Gallery Lightbox */
.gallery-lightbox {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100vw; height: 100vh;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    transition: opacity 0.2s;
}
.gallery-lightbox-backdrop {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.72);
    z-index: 1;
    cursor: pointer;
}
.gallery-lightbox-content {
    position: relative;
    z-index: 2;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 48px #0005;
    padding: 24px 24px 16px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 320px;
    max-width: 92vw;
    max-height: 90vh;
    animation: fadeInUp 0.4s cubic-bezier(.4,2,.6,1);
}
.gallery-lightbox-img {
    max-width: 80vw;
    max-height: 65vh;
    border-radius: 10px;
    box-shadow: 0 2px 16px #fcc00033;
    margin-bottom: 12px;
    background: #eee;
    object-fit: contain;
    transition: box-shadow 0.2s;
}
.gallery-lightbox-close {
    position: absolute;
    top: 10px; right: 18px;
    font-size: 2.2rem;
    color: #FCC000;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 3;
    transition: color 0.2s;
}
.gallery-lightbox-close:hover {
    color: #222;
}
.gallery-lightbox-prev, .gallery-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.5rem;
    color: #FCC000;
    background: rgba(255,255,255,0.85);
    border: none;
    border-radius: 50%;
    width: 48px; height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    transition: background 0.2s, color 0.2s;
    box-shadow: 0 2px 8px #fcc00022;
}
.gallery-lightbox-prev { left: -24px; }
.gallery-lightbox-next { right: -24px; }
.gallery-lightbox-prev:hover, .gallery-lightbox-next:hover {
    background: #FCC000;
    color: #fff;
}
@media (max-width: 700px) {
    .gallery-lightbox-content { min-width: 0; padding: 8px 2vw 8px 2vw; }
    .gallery-lightbox-img { max-width: 96vw; max-height: 48vh; }
    .gallery-lightbox-prev, .gallery-lightbox-next { width: 38px; height: 38px; font-size: 1.7rem; left: -10px; right: -10px; }
}
/* Projeler Grid ve Kartları */
.projects-list-section {
    padding: 48px 0 64px 0;
    background: #f8f8f8;
}
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px 32px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
}
@media (max-width: 1100px) {
    .projects-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
    .projects-grid { grid-template-columns: 1fr; }
}
.project-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 24px #fcc00022;
    padding: 28px 22px 22px 22px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: box-shadow 0.25s, transform 0.25s;
    position: relative;
    overflow: hidden;
    min-height: 420px;
    animation: fadeInUp 1s cubic-bezier(.4,2,.6,1);
}
.project-card:hover {
    box-shadow: 0 8px 32px #fcc00044;
    transform: translateY(-8px) scale(1.025);
    z-index: 2;
}
.project-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #222;
    margin: 18px 0 8px 0;
    letter-spacing: 0.2px;
}
.project-card h3 span {
    font-size: 1.05rem;
    color: #FCC000;
    font-weight: 600;
}
.project-card p {
    font-size: 1.08rem;
    color: #444;
    margin-bottom: 8px;
    line-height: 1.6;
}
.project-card ul {
    margin: 0 0 8px 0;
    padding-left: 18px;
    color: #222;
    font-size: 1.01rem;
}
.project-card ul li {
    margin-bottom: 3px;
    list-style: disc inside;
}
.project-gallery {
    display: flex;
    gap: 8px;
    width: 100%;
    margin-bottom: 8px;
    justify-content: flex-start;
    align-items: center;
}
.project-gallery img {
    width: 32%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 2px 8px #fcc00011;
    transition: transform 0.22s, box-shadow 0.22s;
    cursor: pointer;
    background: #eee;
}
.project-gallery img:hover {
    transform: scale(1.08) rotate(-2deg);
    box-shadow: 0 6px 24px #fcc00033;
    z-index: 3;
}
@media (max-width: 900px) {
    .project-card { min-height: 340px; padding: 18px 8px 16px 8px; }
    .project-gallery img { width: 31%; }
}
@media (max-width: 600px) {
    .projects-list-section { padding: 18px 0 32px 0; }
    .project-card { min-height: 220px; padding: 10px 2vw 10px 2vw; }
    .project-card h3 { font-size: 1.08rem; }
    .project-gallery img { width: 30%; }
}
/* Animasyonlu kartlar */
.animated { opacity: 0; transform: translateY(40px); animation: fadeInUp 1s forwards; }
.animated:nth-child(1) { animation-delay: 0.05s; }
.animated:nth-child(2) { animation-delay: 0.12s; }
.animated:nth-child(3) { animation-delay: 0.19s; }
.animated:nth-child(4) { animation-delay: 0.26s; }
.animated:nth-child(5) { animation-delay: 0.33s; }
.animated:nth-child(6) { animation-delay: 0.40s; }
.animated:nth-child(7) { animation-delay: 0.47s; }
.animated:nth-child(8) { animation-delay: 0.54s; }
.animated:nth-child(9) { animation-delay: 0.61s; }
.animated:nth-child(10) { animation-delay: 0.68s; }
.animated:nth-child(11) { animation-delay: 0.75s; }
.animated:nth-child(12) { animation-delay: 0.82s; }
.animated:nth-child(13) { animation-delay: 0.89s; }
.animated:nth-child(14) { animation-delay: 0.96s; }
.footer-tunnel-animation {
    width: 120px;
    height: 40px;
    margin: 0 auto 12px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}
.footer-tunnel-animation svg {
    display: block;
    width: 120px;
    height: 40px;
    overflow: visible;
    max-width: 100%;
    max-height: 100%;
}
.about-section:hover .about-icon {
    animation: icon-bounce 0.6s cubic-bezier(.4,2,.6,1);
    filter: brightness(1.1) drop-shadow(0 2px 8px #fcc00088);
    transform: scale(1.13) rotate(-8deg);
}
@keyframes icon-bounce {
    0% { transform: scale(1) rotate(0); }
    30% { transform: scale(1.18) rotate(-8deg); }
    60% { transform: scale(0.92) rotate(6deg); }
    80% { transform: scale(1.08) rotate(-4deg); }
    100% { transform: scale(1.13) rotate(-8deg); }
}
/* Hakkımızda (about) sayfası özel stilleri */
.about-main {
    max-width: 900px;
    margin: 48px auto 0 auto;
    padding: 0 16px 32px 16px;
    font-family: 'Roboto', Arial, sans-serif;
}
/* Hakkımızda kutuları ve ikon hizası */
.about-section {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 4px 24px #fcc00022;
    margin-bottom: 48px;
    padding: 40px 32px 32px 96px;
    position: relative;
    overflow: visible;
    animation: fadeInUp 1s cubic-bezier(.4,2,.6,1);
    transition: box-shadow 0.2s;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.about-section:hover {
    box-shadow: 0 8px 32px #fcc00044;
}
.about-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.about-section h2 span {
    font-size: 1.1rem;
    color: #FCC000;
    font-weight: 600;
}
.about-section p {
    font-size: 1.13rem;
    color: #444;
    margin-bottom: 10px;
    line-height: 1.6;
    transition: color 0.2s;
}
.about-section ul.about-list {
    list-style: none;
    padding: 0;
    margin: 0 0 18px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 18px 32px;
}
.about-section ul.about-list li {
    font-size: 1.08rem;
    color: #222;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    background: #fffbe6;
    border-radius: 12px;
    padding: 8px 18px;
    box-shadow: 0 2px 8px #fcc00011;
    transition: background 0.2s, color 0.2s;
}
.about-section ul.about-list li i {
    color: #FCC000;
    font-size: 1.2em;
}
.about-icon {
    position: absolute;
    top: 32px;
    left: 32px;
    background: #FCC000;
    color: #fff;
    border-radius: 50%;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2em;
    box-shadow: 0 4px 16px #fcc00033;
    z-index: 2;
    animation: popIn 0.8s cubic-bezier(.4,2,.6,1);
}
@media (max-width: 900px) {
    .about-section {
        padding: 32px 8vw 24px 72px;
    }
    .about-icon {
        width: 48px;
        height: 48px;
        font-size: 1.3em;
        left: 12px;
        top: 24px;
    }
}
@media (max-width: 600px) {
    .about-main { padding: 0 2vw; }
    .about-section {
        padding: 24px 4vw 18px 56px;
        min-height: 80px;
    }
    .about-section h2 { font-size: 1.1rem; }
    .about-section ul.about-list li { font-size: 0.95rem; padding: 6px 8px; }
    .about-icon {
        width: 36px;
        height: 36px;
        font-size: 1em;
        left: 6px;
        top: 16px;
    }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes popIn {
    0% { transform: scale(0.5); opacity: 0; }
    80% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
}
.fade-in { opacity: 0; animation: fadeInUp 1s forwards; }
.fade-in.delay-1 { animation-delay: 0.2s; }
.fade-in.delay-2 { animation-delay: 0.4s; }
.fade-in.delay-3 { animation-delay: 0.6s; }

@media (max-width: 700px) {
    .about-main { padding: 0 4vw; }
    .about-section { padding: 24px 8px 18px 8px; }
    .about-section h2 { font-size: 1.2rem; }
    .about-section ul.about-list li { font-size: 0.98rem; padding: 7px 10px; }
    .about-icon { width: 44px; height: 44px; font-size: 1.3em; left: 12px; top: -18px; }
}
@media (max-width: 600px) {
    .floating-btn {
        width: 28px !important;
        height: 28px !important;
        min-width: 0;
        max-width: 28px;
        padding: 0;
        box-shadow: 0 2px 8px #0002;
    }
    .floating-btn.floating-call {
        left: 14px !important;
        right: unset !important;
        bottom: 90px !important;
        background: #FCC000;
        color: #fff;
        border: none;
    }
    .floating-btn.floating-catalog {
        right: 14px !important;
        left: unset !important;
        bottom: 90px !important;
        background: #FCC000;
        color: #fff;
        border: none;
    }
    .floating-btn .floating-btn-text {
        display: none !important;
    }
    .floating-panel {
        min-width: 0;
        max-width: 96vw;
        width: 90vw;
        padding: 8px 4px 8px 4px;
        font-size: 0.9em;
        border-radius: 10px;
        left: 4px !important;
        right: 4px !important;
        bottom: 38px !important;
        box-shadow: 0 2px 12px #0002;
    }
    .floating-call-panel {
        left: 4px !important;
        right: auto !important;
        bottom: 38px !important;
        flex-direction: row;
        width: 90vw;
    }
    .floating-catalog-panel {
        right: 4px !important;
        left: auto !important;
        bottom: 38px !important;
        flex-direction: column;
        align-items: flex-end;
        width: 90vw;
    }
    .floating-search-input {
        font-size: 0.95em;
        width: 100%;
        min-width: 0;
    }
    .floating-search-close, .floating-catalog-close {
        font-size: 1em;
        margin-left: 3px;
    }
    .floating-catalog-link {
        font-size: 0.92em;
        margin-bottom: 3px;
    }
}
.floating-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    justify-content: center;
    padding: 0;
    transition: width 0.25s cubic-bezier(.4,2,.6,1), background 0.2s, color 0.2s, box-shadow 0.2s;
    overflow: hidden;
}
.floating-btn .floating-btn-text {
    opacity: 0;
    width: 0;
    margin-left: 0;
    transition: opacity 0.18s, width 0.22s, margin 0.18s;
    white-space: nowrap;
    pointer-events: none;
}
.floating-btn:hover, .floating-btn:focus {
    width: 170px;
    border-radius: 32px;
    justify-content: flex-start;
    box-shadow: 0 8px 24px #0003;
}
.floating-btn:hover .floating-btn-text, .floating-btn:focus .floating-btn-text {
    opacity: 1;
    width: auto;
    margin-left: 12px;
    pointer-events: auto;
}
/* Footer imza minimal */
.footer-signature {
    display: block;
    margin-top: 2px;
    font-size: 0.93rem;
    color: #888;
    text-align: center;
    letter-spacing: 0.1px;
    font-weight: 400;
}
.footer-signature a {
    color: #888;
    text-decoration: none;
    transition: color 0.2s, text-decoration 0.2s;
    font-weight: 500;
}
.footer-signature a:hover, .footer-signature a:focus {
    color: #FCC000;
    text-decoration: underline;
}
.footer-wp {
    margin-left: 8px;
    font-size: 0.98em;
    display: inline-flex;
    align-items: center;
    gap: 2px;
}
.footer-wp i {
    color: #25D366;
    font-size: 1.1em;
    margin-right: 2px;
    vertical-align: middle;
}
.footer-wp-number {
    font-size: 0.97em;
    color: #888;
    letter-spacing: 0.5px;
}
.footer-wp:hover .footer-wp-number,
.footer-wp:focus .footer-wp-number {
    color: #25D366;
    text-decoration: underline;
}
/* ===================== FOOTER MODERN & ANİMASYON ===================== */
.footer {
    width: 100%;
    background: #fff;
    border-radius: 32px 32px 0 0;
    box-shadow: 0 -2px 16px rgba(252,192,0,0.08);
    margin: 0 auto;
    padding: 0;
    min-height: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    position: relative;
}
.footer-content {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 18px 0 8px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
}
.footer-content p {
    color: #222;
    font-size: 1.08rem;
    font-weight: 500;
    margin: 0;
    letter-spacing: 0.2px;
    text-align: center;
}
.footer-tunnel-animation {
    width: 120px;
    height: 40px;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
}
@media (max-width: 900px) {
    .footer-content {
        max-width: 98vw;
        padding: 10px 0 4px 0;
    }
    .footer-tunnel-animation {
        width: 80px;
        height: 28px;
    }
    .footer-content p {
        font-size: 0.95rem;
    }
}
/* ===================== İLETİŞİM MODERN ===================== */
.contact {
    width: 100%;
    max-width: 700px;
    margin: 48px auto 48px auto;
    background: #fff;
    border-radius: 28px;
    box-shadow: 0 4px 24px rgba(252,192,0,0.10), 0 2px 12px rgba(0,0,0,0.07);
    padding: 40px 36px 32px 36px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
}
.contact h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #FCC000;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 8px #fff8;
}
.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.contact-list li {
    display: flex;
    align-items: center;
    font-size: 1.13rem;
    color: #333;
    font-weight: 500;
    background: #FFFBEA;
    border-radius: 18px;
    padding: 16px 18px;
    box-shadow: 0 2px 8px rgba(252,192,0,0.06);
    transition: box-shadow 0.25s, transform 0.25s, background 0.25s;
    cursor: pointer;
}
.contact-list li:hover, .contact-list li:focus {
    background: #FCC000;
    color: #222;
    box-shadow: 0 8px 24px rgba(252,192,0,0.13);
    transform: translateY(-4px) scale(1.03);
}
.contact-list li i {
    font-size: 1.5rem;
    color: #FCC000;
    margin-right: 18px;
    min-width: 32px;
    transition: color 0.2s;
}
.contact-list li:hover i, .contact-list li:focus i {
    color: #222;
}
.contact-list a {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}
.contact-list li:hover a, .contact-list li:focus a {
    color: #222;
    text-decoration: underline;
}
@media (max-width: 900px) {
    .contact {
        max-width: 98vw;
        padding: 24px 8px;
    }
    .contact h2 {
        font-size: 1.3rem;
        margin-bottom: 14px;
    }
    .contact-list li {
        font-size: 1rem;
        padding: 10px 8px;
    }
    .contact-list li i {
        font-size: 1.1rem;
        margin-right: 10px;
        min-width: 20px;
    }
}
/* ===================== MİSYON & VİZYON MODERN ===================== */
.mission-vision {
    display: flex;
    flex-direction: row;
    gap: 40px;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    max-width: 1100px;
    margin: 40px auto 40px auto;
    padding: 0;
    background: none;
}
.mission, .vision {
    flex: 1 1 0;
    background: #fff;
    border-radius: 28px;
    box-shadow: 0 4px 24px rgba(252,192,0,0.10), 0 2px 12px rgba(0,0,0,0.07);
    padding: 40px 36px 36px 36px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-width: 260px;
    min-height: 180px;
    position: relative;
    transition: transform 0.35s cubic-bezier(.7,.2,.3,1), box-shadow 0.25s, border 0.25s;
    cursor: pointer;
    border: 2px solid transparent;
}
.mission:hover, .vision:hover, .mission:focus, .vision:focus {
    transform: translateY(-10px) scale(1.03) rotate(-1deg);
    box-shadow: 0 12px 36px rgba(252,192,0,0.18), 0 4px 24px rgba(0,0,0,0.10);
    border: 2px solid #FCC000;
    z-index: 2;
}
.mission h3, .vision h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #FCC000;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 8px #fff8;
}
.mission p, .vision p {
    font-size: 1.13rem;
    color: #333;
    font-weight: 500;
    margin: 0;
    line-height: 1.6;
    text-shadow: 0 1px 8px #fff8;
}
@media (max-width: 900px) {
    .mission-vision {
        flex-direction: column;
        gap: 18px;
        max-width: 98vw;
        padding: 0 8px;
    }
    .mission, .vision {
        padding: 24px 12px;
        min-width: 0;
        min-height: 120px;
    }
    .mission h3, .vision h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    .mission p, .vision p {
        font-size: 1rem;
    }
}
/* Projeler slider içeriği tam dolsun, yazı arka planı #FCC000 */
@media (min-width: 992px) {
    .projects-slider-container {
        display: flex;
        align-items: stretch;
        justify-content: stretch;
        height: 420px;
        padding: 0;
        background: none;
    }
    .project-slide {
        position: relative;
        display: flex;
        flex-direction: row;
        align-items: stretch;
        justify-content: stretch;
        width: 100%;
        height: 100%;
        padding: 0;
        margin: 0;
        box-sizing: border-box;
        background: none;
    }
    .project-slide img {
        width: 40%;
        min-width: 320px;
        max-width: 600px;
        height: 100%;
        object-fit: cover;
        border-radius: 0;
        margin: 0;
        flex: 0 0 40%;
        box-shadow: none;
        background: #eaeaea;
    }
    .project-info {
        flex: 1 1 60%;
        width: 60%;
        max-width: 100%;
        min-width: 0;
        height: 100%;
        border-radius: 0;
        box-shadow: none;
        padding: 48px 48px 48px 48px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        background: #FCC000 !important;
        color: #222 !important;
    }
    .project-info h2,
    .project-info p,
    .project-info h2 span {
        color: #222 !important;
        text-shadow: none !important;
    }
}
/* Projeler slider içeriği container'ı tam doldursun */
@media (min-width: 992px) {
    .projects-slider-container {
        display: flex;
        align-items: stretch;
        justify-content: stretch;
        height: 420px;
        padding: 0;
    }
    .project-slide {
        position: relative;
        display: flex;
        flex-direction: row;
        align-items: stretch;
        justify-content: stretch;
        width: 100%;
        height: 100%;
        padding: 0;
        margin: 0;
        box-sizing: border-box;
    }
    .project-slide img {
        width: 40%;
        min-width: 320px;
        max-width: 600px;
        height: 100%;
        object-fit: cover;
        border-radius: 0;
        margin: 0;
        flex: 0 0 40%;
        box-shadow: none;
    }
    .project-info {
        flex: 1 1 60%;
        width: 60%;
        max-width: 100%;
        min-width: 0;
        height: 100%;
        border-radius: 0;
        box-shadow: none;
        padding: 48px 48px 48px 48px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        background: #fff;
    }
}
/* Projeler Slider içeriği tam genişlik için */
@media (min-width: 992px) {
    .projects-slider-container {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
    }
    .projects-slider .project-slide {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
}
/* Projeler Slider ve sonrası için sağ-sol boşluklar */
@media (min-width: 992px) {
    .projects-slider,
    .about-short,
    .mission-vision,
    .contact,
    .footer {
        padding-left: 60px;
        padding-right: 60px;
        box-sizing: border-box;
        width: 100%;
        max-width: 1600px;
        margin-left: auto;
        margin-right: auto;
    }
}
@media (min-width: 992px) {
    .navbar-actions {
        display: flex !important;
        align-items: center;
        gap: 18px;
    }
    .navbar-mobile-icons {
        display: none !important;
    }
}
@media (max-width: 991px) {
    .navbar-actions {
        display: none !important;
    }
    .navbar-mobile-icons {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 18px !important;
        margin: 16px 0 8px 0 !important;
        width: 100% !important;
        box-sizing: border-box;
    }
    .navbar-mobile-lang {
        display: flex !important;
        align-items: center !important;
        gap: 12px !important;
        justify-content: center !important;
        width: 100% !important;
    }
    .navbar-mobile-icons .navbar-icon {
        margin-left: 0 !important;
        display: flex !important;
        justify-content: center;
        align-items: center;
    }
}
/* Masaüstünde hamburger menü içindeki ikonlar ve dil seçici gizli, mobilde sadece hamburger menü açıkken görünür */
@media (min-width: 992px) {
    .navbar-mobile-icons,
    .navbar-mobile-lang {
        display: none !important;
    }
}
@media (max-width: 991px) {
    .navbar-actions,
    .navbar-icon,
    .navbar-lang {
        display: none !important;
    }
    .navbar-mobile-icons,
    .navbar-mobile-lang {
        display: flex !important;
        flex-direction: row !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 16px !important;
        margin: 16px 0 8px 0 !important;
        width: 100% !important;
        box-sizing: border-box;
    }
    .navbar-mobile-icons .navbar-icon {
        margin-left: 0 !important;
        display: flex !important;
    }
}
.about-short-icon {
    /* ...mevcut kod... */
    transition: transform 0.35s cubic-bezier(.7,.2,.3,1), box-shadow 0.25s, color 0.25s, background 0.25s;
    will-change: transform, box-shadow, color, background;
}
@media (max-width: 991px) {
                .navbar-mobile-icons,
                .navbar-mobile-lang {
                    display: flex !important;
                    flex-direction: row !important;
                    justify-content: center !important;
                    align-items: center !important;
                    gap: 16px !important;
                    margin: 16px 0 8px 0 !important;
                    width: 100% !important;
                    box-sizing: border-box;
                }
    .about-short-container {
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 18px;
        text-align: center !important;
        width: 100%;
    }
    .about-short-icon {
        margin-bottom: 0;
        display: flex !important;
        justify-content: center !important;
            @media (max-width: 991px) {
                .navbar-icon,
                .navbar-lang {
                    display: none !important;
                }
                .navbar-hamburger {
                    display: flex !important;
                }
            }
            /* Hamburger menü açıldığında ikonlar ve dil görünsün */
            .navbar-mobile-icons {
                display: flex !important;
                flex-direction: row !important;
                justify-content: center !important;
                align-items: center !important;
                gap: 16px !important;
                margin: 16px 0 8px 0 !important;
                width: 100% !important;
                box-sizing: border-box;
            }
            .navbar-mobile-lang {
                display: flex !important;
                align-items: center !important;
                gap: 12px !important;
                justify-content: center !important;
                width: 100% !important;
            }
            .navbar-mobile-icons .navbar-icon {
                margin-left: 0 !important;
                display: flex !important;
            }
        align-items: center !important;
        width: 100%;
    }
    .about-short-content {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100%;
        text-align: center !important;
    }
    .about-short-content h2 {
        font-size: 1.4rem;
        text-align: center !important;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    .about-short-content p {
        font-size: 1rem;
        padding: 0 2px;
        text-align: center !important;
        margin-left: 0;
        margin-right: 0;
    }
}
.about-short-icon:hover, .about-short-icon:focus {
    transform: scale(1.13) translateY(-8px) rotate(-3deg);
    box-shadow: 0 8px 32px rgba(252,192,0,0.18), 0 2px 12px rgba(0,0,0,0.10);
    color: #fff;
    background: #FCC000;
    cursor: pointer;
}
/* ===================== KISACA BIZ MODERN ===================== */
.about-short {
    width: 100%;
    max-width: 1100px;
    margin: 32px auto 32px auto;
    border-radius: 32px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    background: #fff;
    overflow: hidden;
    position: relative;
    min-height: 180px;
        height: auto; /* Allow height to adjust based on content */
    flex-direction: column;
    justify-content: center;
}
.about-short-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 32px;
    padding: 40px 48px;
}
.about-short-icon {
    font-size: 3.5rem;
    color: #FCC000;
    background: #FFFBEA;
    border-radius: 24px;
    padding: 24px 28px;
    box-shadow: 0 2px 12px rgba(252,192,0,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 90px;
    min-height: 90px;
}
.about-short-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}
.about-short-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #222;
    margin: 0 0 18px 0;
    letter-spacing: 0.5px;
}
.about-short-content p {
    font-size: 1.18rem;
    color: #444;
    font-weight: 500;
    margin: 0;
    line-height: 1.6;
    text-shadow: 0 1px 8px #fff8;
}
@media (max-width: 900px) {
    .about-short {
        max-width: 98vw;
    }
    .about-short-container {
        flex-direction: column;
        gap: 16px;
        padding: 24px 12px;
        align-items: flex-start;
    }
    .about-short-icon {
        font-size: 2.2rem;
        padding: 12px 14px;
        min-width: 48px;
        min-height: 48px;
    }
    .about-short-content h2 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    .about-short-content p {
        font-size: 1rem;
    }
}
/* ===================== SLIDER MODERN KURUMSAL ===================== */
.projects-slider {
    width: 100%;
    max-width: 1100px;
    margin: 48px auto 32px auto;
    border-radius: 32px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.10);
    background: #fff;
    overflow: hidden;
    position: relative;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.projects-slider-container {
    position: relative;
    width: 100%;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #f7f7f7;
}
.project-slide {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0;
    pointer-events: none;
    transform: scale(0.98) translateY(30px);
    transition: opacity 0.7s cubic-bezier(.7,.2,.3,1), transform 0.7s cubic-bezier(.7,.2,.3,1);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding: 0 0 0 0;
    z-index: 1;
}
.project-slide.active {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1) translateY(0);
    z-index: 2;
}
.project-slide img {
    width: 420px;
    height: 100%;
    object-fit: cover;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: #fff !important;
    margin-right: 0 !important;
    flex-shrink: 0;
}
.project-info {
    padding: 48px 48px 48px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background: #fff !important;
    border-radius: 0 !important;
    min-width: 0 !important;
    max-width: none !important;
    height: 100%;
    box-shadow: none !important;
}
.project-info h2 {
    font-size: 2.1rem;
    font-weight: 700;
    color: #222;
    margin: 0 0 16px 0;
    letter-spacing: 0.5px;
    line-height: 1.2;
}
.project-info h2 span {
    font-size: 1.1rem;
    color: #FCC000;
    font-weight: 600;
    margin-left: 8px;
}
.project-info p {
    font-size: 1.18rem;
    color: #444;
    font-weight: 500;
    margin: 0;
    line-height: 1.5;
    text-shadow: 0 1px 8px #fff8;
}
.slider-controls {
    position: absolute;
    right: 32px;
    bottom: 32px;
    display: flex;
    gap: 16px;
    z-index: 10;
}
.slider-btn {
    background: #fff;
    border: 2px solid #FCC000;
    color: #FCC000;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: background 0.2s, color 0.2s, border 0.2s;
}
.slider-btn:hover, .slider-btn:focus {
    background: #FCC000;
    color: #222;
    border: 2px solid #222;
    outline: none;
}
@media (max-width: 900px) {
    .projects-slider {
        max-width: 98vw;
        min-height: 320px;
    }
    .projects-slider-container {
        height: 320px;
    }
    .project-slide img {
        width: 180px;
        min-width: 120px;
        border-radius: 0 24px 24px 0;
    }
    .project-info {
        padding: 24px 16px 24px 16px;
        min-width: 0;
        max-width: 100vw;
    }
    .slider-controls {
        right: 12px;
        bottom: 12px;
    }
    .slider-btn {
        width: 38px;
        height: 38px;
        font-size: 1.2rem;
    }
}
@media (max-width: 600px) {
    .projects-slider-container {
        height: 220px;
    }
    .project-slide img {
        width: 90px;
        min-width: 60px;
        border-radius: 0 12px 12px 0;
    }
    .project-info {
        padding: 10px 6px 10px 8px;
            min-width: 0;
            max-width: 100%;
    }
        .project-info h2 {
            font-size: 1.1rem;
            word-break: break-word;
            overflow-wrap: break-word;
            hyphens: auto;
            line-height: 1.1;
            max-width: 100%;
        }
        .project-info p {
            font-size: 0.95rem;
            word-break: break-word;
            overflow-wrap: break-word;
            hyphens: auto;
            line-height: 1.2;
            max-width: 100%;
        }
    .slider-controls {
        right: 4px;
        bottom: 4px;
    }
}
/* Genel body ayarları */
/* Sayfa ana içeriği ortalansın ve taşma olmasın */
.section, .about-short, .projects-slider, .main-content, main, .container, .content {
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 100vw !important;
    box-sizing: border-box;
    overflow-x: hidden !important;
}
body {
    padding: 0 24px; /* Masaüstünde kenarlardan boşluk */
    box-sizing: border-box;
    max-width: 100vw;
    overflow-x: hidden !important;
}

/* Hamburger menü ve mobil navbar için medya sorguları */

/* Floating Call & Catalog Buttons */
.floating-btn {
    position: fixed;
    z-index: 1200;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 32px;
    background: #fff;
    color: #FCC000;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 16px #0002;
    cursor: pointer;
    transition: box-shadow 0.2s, background 0.2s, color 0.2s;
    user-select: none;
}
.floating-btn i {
    font-size: 1.3em;
}
.floating-btn.floating-call {
    left: 24px;
    bottom: 32px;
    background: #FCC000;
    color: #fff;
}
.floating-btn.floating-catalog {
    right: 24px;
    bottom: 32px;
    background: #fff;
    color: #FCC000;
    border: 2px solid #FCC000;
}
.floating-btn:hover {
    box-shadow: 0 8px 24px #0003;
    background: #ffe082;
    color: #222;
}
.floating-btn.floating-call:hover {
    background: #fff;
    color: #FCC000;
    border: 2px solid #FCC000;
}
.floating-btn.floating-catalog:hover {
    background: #FCC000;
    color: #fff;
}
.floating-btn-text {
    font-size: 1.1em;
    font-weight: 600;
}
.floating-panel {
    position: fixed;
    z-index: 1300;
    background: #fff;
    box-shadow: 0 8px 32px #0003;
    border-radius: 18px;
    padding: 20px 18px 18px 18px;
    min-width: 220px;
    max-width: 90vw;
    display: none;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s cubic-bezier(.4,2,.6,1), opacity 0.2s;
}
.floating-call-panel {
    left: 24px;
    bottom: 80px;
    flex-direction: row;
}
.floating-catalog-panel {
    right: 24px;
    bottom: 80px;
    flex-direction: column;
    align-items: flex-end;
}
.floating-search-input {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #FCC000;
    border-radius: 8px;
    font-size: 1em;
    outline: none;
}
.floating-search-close, .floating-catalog-close {
    background: none;
    border: none;
    color: #FCC000;
    font-size: 1.5em;
    cursor: pointer;
    margin-left: 8px;
    transition: color 0.2s;
}
.floating-search-close:hover, .floating-catalog-close:hover {
    color: #d4a000;
}
.floating-catalog-link {
    color: #FCC000;
    font-weight: 700;
    font-size: 1.1em;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.2s;
}
.floating-catalog-link:hover {
    color: #222;
    text-decoration: underline;
}
@media (max-width: 600px) {
    .floating-btn, .floating-panel {
        left: 8px !important;
        right: 8px !important;
        min-width: 0;
        max-width: 96vw;
        padding: 10px 8px;
        font-size: 0.98em;
    }
    .floating-btn.floating-call {
        bottom: 18px;
    }
    .floating-btn.floating-catalog {
        bottom: 18px;
    }
    .floating-call-panel {
        bottom: 60px;
    }
    .floating-catalog-panel {
        bottom: 60px;
    }
}
@media (max-width: 900px) {
    body {
        padding: 0 !important; /* Mobilde padding sıfır */
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }
    @media (max-width: 991px) {
        .navbar-icon {
            display: none !important;
        }
        .navbar-hamburger {
            display: flex !important;
        }
    }
    @media (max-width: 900px) {
        body {
            padding: 0 !important;
        }
        .navbar {
            display: flex !important;
            flex-direction: row;
            align-items: center;
            justify-content: space-between;
            padding: 0 16px;
            height: 80px;
            min-height: 64px;
            width: 100vw !important;
            max-width: 100vw !important;
            overflow-x: hidden !important;
            box-sizing: border-box;
        }
        .navbar-menu {
            display: none !important; /* Menü sadece hamburgerde */
        }
        .navbar-hamburger {
            display: flex !important;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            background: none;
            border: none;
            box-shadow: none;
            border-radius: 0;
            padding: 8px;
            margin-left: 8px;
            cursor: pointer;
            z-index: 2;
        }
        .navbar-actions {
            display: none !important;
        }
        .navbar-mobile-menu {
            display: none;
            position: fixed;
            top: 0;
            left: -100vw;
            width: 100vw !important;
            min-width: 100vw !important;
            max-width: 100vw !important;
            height: 100vh;
            background: #fff;
            box-shadow: 2px 0 16px rgba(0,0,0,0.10);
            z-index: 2000;
            transition: left 0.35s cubic-bezier(.7,.2,.3,1);
            border-radius: 0 24px 24px 0;
            overflow-y: auto;
            overflow-x: hidden !important;
            flex-direction: column;
            justify-content: flex-start;
            align-items: stretch;
            box-sizing: border-box;
        }
        .navbar-mobile-menu.active {
            display: block;
            left: 0;
        }
        .navbar-close {
            position: absolute;
            top: 16px;
            left: 16px;
            font-size: 2rem;
            background: none;
            border: none;
            cursor: pointer;
            z-index: 2010;
        }
    }
}
    @media (min-width: 901px) {
        .navbar {
            display: flex !important;
        }
        .navbar-menu {
            display: flex !important;
        }
        .navbar-hamburger {
            display: none !important;
        }
        .navbar-mobile-menu {
            display: none !important;
        }
    }
    @media (min-width: 901px) {
        .navbar {
            display: flex !important;
        }
        .navbar-menu {
            display: flex !important;
        }
        .navbar-hamburger {
            display: none !important;
        }
        .navbar-mobile-menu {
            display: none !important;
        }
    }

/* Hamburger butonu ve çizgileri */
.navbar-hamburger {
    display: none; /* Varsayılan olarak gizli */
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2001;
}
.hamburger-bar {
    display: block;
    width: 28px;
    height: 4px;
    margin: 5px 0;
    background: #222;
    border-radius: 2px;
    transition: all 0.3s;
}

/* Preloader ana kapsayıcı */
#stc-preloader {
    position: fixed; /* Sayfa boyunca sabit */
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #fff; /* Arka plan rengi */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Tüm içeriklerin üstünde */
}

/* STC logosu (preloader) */
#stc-logo {
    width: 120px;
    height: auto;
    margin-bottom: 8px;
}

/* Yüklenme animasyonu kapsayıcı */
.stc-loader {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 40px;
    gap: 8px;
}

/* Animasyon topları */
.stc-bounce1, .stc-bounce2, .stc-bounce3 {
    width: 16px;
    height: 16px;
    background-color: #FDD000;
    border-radius: 50%;
    display: inline-block;
    animation: stc-bouncedelay 1.4s infinite ease-in-out both;
}
.stc-bounce2 { animation-delay: -0.32s; }
.stc-bounce3 { animation-delay: -0.16s; }
@keyframes stc-bouncedelay {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

/* Mobilde preloader daha küçük */
@media (max-width: 600px) {
    #stc-logo { width: 80px; margin-bottom: 6px; }
    .stc-loader { height: 28px; gap: 4px; }
    .stc-bounce1, .stc-bounce2, .stc-bounce3 { width: 10px; height: 10px; }
}

/* Navbar ana stil (masaüstü) */
.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    border-radius: 0 0 40px 40px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0 64px;
    height: 120px;
    font-weight: 500;
    overflow: visible;
}

/* Navbar video arka planı */
.navbar-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    border-radius: 0 0 40px 40px;
    pointer-events: none;
}

.navbar > *:not(.navbar-bg-video) {
    position: relative;
    z-index: 1;
}

/* Navbar sol kısım (logo ve menü) */
.navbar-left {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 0;
    height: 100%;
    flex: 1;
    justify-content: flex-start;
}
/* Hamburger menü butonu logo yanında ve ortada */
.navbar-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: none;
    border: none;
    box-shadow: none;
    border-radius: 50%;
    padding: 8px;
    margin-left: 8px;
    cursor: pointer;
    z-index: 2;
    color: #FCC000;
    transition: border 0.2s, color 0.2s;
}
.navbar-hamburger:focus,
.navbar-hamburger:hover {
    outline: none;
    border: 2px solid #222;
    color: #222;
}
.hamburger-bar {
    display: block;
    width: 28px;
    height: 4px;
    margin: 4px 0;
    background: #FCC000;
    border-radius: 2px;
    transition: background 0.2s;
}
.navbar-hamburger:hover .hamburger-bar,
.navbar-hamburger:focus .hamburger-bar {
    background: #222;
}

/* Navbar logo */
.navbar-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    margin-right: 0;
}
.navbar-logo img {
    height: 110px;
    max-height: 110px;
    width: auto;
    display: block;
    margin: 0 auto;
}

/* Navbar menü */
.navbar-menu {
    display: flex;
    gap: 36px;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: center;
}
.navbar-menu li a {
    color: #222;
    font-size: 1.15rem;
    font-weight: 500;
    text-decoration: none;
    padding: 8px 0;
    border: none;
    border-bottom: 2px solid transparent;
    border-radius: 2px;
    letter-spacing: 0.5px;
    transition: color 0.2s, border-bottom 0.2s, font-size 0.2s, text-shadow 0.2s;
    text-shadow: 0 0 1px #000, 0 0 0.5px #000;
}
.navbar-menu li a.active {
    color: #FCC000;
    font-size: 1.25rem;
    font-weight: 600;
    border-bottom: 3px solid #FCC000;
    text-shadow: 0 0 1.5px #000, 0 0 0.5px #000;
}
.navbar-menu li a:hover:not(.active) {
    color: #FCC000;
    border-bottom: 2px solid #FCC000;
}

/* Navbar sağ aksiyonlar (ikonlar ve dil) */
.navbar-actions {
    display: flex;
    align-items: center;
    gap: 32px;
    height: 100%;
    padding-right: 32px;
}

.navbar-icon {
    font-size: 28px;
    color: #222;
    text-decoration: none;
    border: 2px solid #FCC000;
    border-radius: 50%;
    padding: 6px;
    margin-left: 8px;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
    background: #fff;
}
.navbar-icon:hover {
    color: #FCC000;
    border-color: #222;
    background: #FFFBEA;
}

/* Dil seçici */
.navbar-lang {
    position: relative;
    margin-left: 0;
}
.lang-btn {
    background: none;
    border: 2px solid #FCC000;
    border-radius: 50%;
    padding: 6px 10px;
    color: #222;
    font-size: 22px;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
}
.lang-btn:hover {
    border-color: #222;
    color: #FCC000;
}
.lang-list {
    display: none;
    position: absolute;
    top: 40px;
    right: 0;
    left: auto;
    background: #fff;
    border: 1px solid #FCC000;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    min-width: 140px;
    z-index: 1000;
    white-space: nowrap;
    overflow-x: auto;
}
.navbar-lang:hover .lang-list,
.navbar-lang:focus-within .lang-list {
    display: block;
}
.lang-list li a {
    display: block;
    padding: 8px 16px;
    color: #222;
    text-decoration: none;
    font-weight: 700;
    transition: background 0.2s, color 0.2s;
}
.lang-list li a.active,
.lang-list li a:hover {
    background: #FFFBEA;
    color: #FCC000;
}

/* Hamburger menü içeriği (isteğe göre özelleştirilebilir) */
.navbar-mobile-menu ul {
    list-style: none;
    padding: 48px 0 0 0;
    margin: 0;
}
.navbar-mobile-menu li {
    margin: 0;
    padding: 0;
}
.navbar-mobile-menu li a {
    display: block;
    padding: 18px 32px;
    color: #222;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid #f3f3f3;
    transition: background 0.2s, color 0.2s;
}
.navbar-mobile-menu li a.active,
.navbar-mobile-menu li a:hover {
    background: #FFFBEA;
    color: #FCC000;
}
