@charset "utf-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    button [type="submit"]

{
    font-family: inherit;
    font-size: 16px;
}

}

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient( 135deg, #0c0c0c 0%, #1a1a2e 15%, #16213e 35%, #0f3460 50%, #533a7d 70%, #8b5a8c 85%, #a0616a 100% );
    min-height: 100vh;
    overflow-x: hidden; 
}

/* Animated background elements */
.bg-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.08);
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.1);
}

    .shape:nth-child(1) {
        width: 120px;
        height: 80px;
        border-radius: 15px;
        top: 20%;
        left: 10%;
        animation-delay: 0s;
        transform: rotate(15deg);
    }

    .shape:nth-child(2) {
        width: 90px;
        height: 140px;
        border-radius: 12px;
        top: 60%;
        right: 15%;
        animation-delay: 2s;
        transform: rotate(-20deg);
    }

    .shape:nth-child(3) {
        width: 100px;
        height: 60px;
        border-radius: 10px;
        bottom: 20%;
        left: 20%;
        animation-delay: 4s;
        transform: rotate(25deg);
    }

    .shape:nth-child(4) {
        width: 80px;
        height: 120px;
        border-radius: 8px;
        top: 10%;
        right: 30%;
        animation-delay: 1s;
        transform: rotate(-10deg);
    }

    .shape:nth-child(5) {
        width: 110px;
        height: 70px;
        border-radius: 14px;
        bottom: 40%;
        right: 20%;
        animation-delay: 3s;
        transform: rotate(30deg);
    }

    .shape:nth-child(6) {
        width: 95px;
        height: 95px;
        border-radius: 20px;
        top: 40%;
        left: 5%;
        animation-delay: 5s;
        transform: rotate(-15deg);
    }

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(var(--start-rotation, 0deg));
    }

    50% {
        transform: translateY(-20px) rotate(calc(var(--start-rotation, 0deg) + 180deg));
    }
}
/* Glass container styles */
.glass {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .glass:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-5px);
        box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
    }
/* Header styles */
header {
    padding: 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}
/* Navigation styles */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 45px;
}

.logo {
    text-decoration: none;
    font-size: 25px;
    font-weight: bold;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 40px;
    cursor: pointer;
}

.logo-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-img {
    display: flex;
    align-items: center;
    max-width: 130px;
    margin-top: -4px;
}
/* MOBİL AYAR */
@media (max-width: 768px) {

    .logo {
        flex-direction: column; /* alt alta */
        text-align: center;
        gap: 30px; /* arayı küçült */
        margin-top: 15px;
    }

    .logo-icon {
        width: auto;
        height: auto;
    }

    .logo-img {
        max-width: 120px; /* mobilde boyut */
    }

    .logo span {
        font-size: 20px; /* yazı küçült */
    }
}

.nav-links {
    display: flex;
    gap: 30px;
}

    .nav-links a {
        color: rgba(255, 255, 255, 0.9);
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
        padding: 12px 24px 13px 24px;
        border-radius: 10px;
        cursor: pointer;
        font-size: 16px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    }

        .nav-links a:hover,
        .nav-links a.active {
            color: white;
            background: rgba(255, 255, 255, 0.1);
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
        }
/* Page system */
.page {
    display: none; 
    padding: 10px 20px 20px;
}

    .page.active {
        display: block;
    }
/* Content wrapper to contain page content */
.content-wrapper {
    min-height: calc(100vh - 300px);
}
/* Home page styles */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 30px 20px;
    margin-bottom: 20px;
}

.hero2 {
    display: grid;
    gap: 40px;
    align-items: center;
    padding: 10px 20px;
    margin-bottom: 20px;
    text-align: center;
    color: white;
    /* Orta-üst seviye kabartma */
    text-shadow: 2px 2px 2px rgba(0,0,0,0.6), /* gölge ile derinlik */
    4px 4px 4px rgba(0,0,0,0.4), /* ekstra kabartma etkisi */
    0 0 10px rgba(255,255,255,0.15); /* hafif glow */
}
.hero4 {
    display: grid;
    gap: 40px;
    align-items: center;
    padding: 10px 20px;
    text-align: center;
    color: white;
    /* Orta-üst seviye kabartma */
    text-shadow: 2px 2px 2px rgba(0,0,0,0.6), /* gölge ile derinlik */
    4px 4px 4px rgba(0,0,0,0.4), /* ekstra kabartma etkisi */
    0 0 10px rgba(255,255,255,0.15); /* hafif glow */
}
/* ===== Breadcrumb ===== */
.hero3 {
    padding: 20px;
    margin-bottom: 30px;
    color: white;
}

    .hero3 a {
        text-decoration: none;
        color: white;
    }

        .hero3 a:hover {
            text-decoration: underline;
            opacity: 0.8;
        }

/* ===== Ana Layout ===== */
.category-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px; 
}

/* ===== Sol Sidebar ===== */
.category-sidebar {
    padding: 20px;
    height: fit-content;
}

.sidebar-item {
    padding: 12px 3px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

    /* Listenin son öğesi için border kaldır */
    .sidebar-item:last-child {
        border-bottom: none;
    }
    .sidebar-item a {
        color: white;
        text-decoration: none;
        transition: all 0.3s ease;
        display: block;
    }

        .sidebar-item a::before {
            content: "➜";
            position: absolute;
            left: 3px;
            font-size: 16px;
            color: #ff512f;
            font-size: 14px;
            transition: 0.5s;
        }

        .sidebar-item a:hover {
            padding-left: 8px;
            color: #ff512f;
        }

/* ===== Sağ İçerik ===== */
.category-content {
    width: 100%;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {

    .category-layout {
        grid-template-columns: 1fr;
    }

    .category-sidebar {
        order: 1;
    }

    .category-content {
        order: 2;
    }
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

    .hero-image img {
        width: 100%;
        max-width: 440px;
        height: auto;
        border-radius: 20px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    }

.hero-content {
    text-align: left;
}

.hero h1 {
    font-size: 2.8rem;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    line-height: 1.2;
}

.hero p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
}

    .cta-button:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    }

button[type="submit"] {
    font-family: inherit;
    font-size: 16px;
}

.features {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
    justify-content: center; /* Alt satırdaki kutular da ortalanır */
}

    .features > * {
        flex: 1 1 300px; /* Minimum 300px, gerektiğinde büyüsün */
        max-width: 1fr;
    }
/* productList kapsayıcı */
#pages_placeholder .productList {
    display: flex;
    flex-wrap: wrap; 
}

    /* feature-cardlar normal masaüstü için */
    #pages_placeholder .productList > .feature-card {
        flex: 1 1 30%;
        max-width: 30%;
        box-sizing: border-box;
    }

    /* Tek ürün varsa tam genişlik yap */
    #pages_placeholder .productList:has(> .feature-card:only-child) > .feature-card {
        flex: 1 1 100%;
        max-width: 100%;
    }
/* Mobil için */
@media (max-width: 768px) {
    #pages_placeholder .productList > .feature-card {
        flex: 1 1 100%;
        max-width: 100%;
    } 
}

.feature-card {
    padding: 20px 10px;
    text-align: center;
    color: white;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
}

    .feature-card a {
        text-decoration: none;
        width: 100%;
        height: 100%;
    }

.feature-icon {
    max-width: 200px; /* div boyutu büyüdü */
    max-height: 200px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Gölge efekti */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3), /* kutu gölgesi */
    0 0 10px rgba(255, 255, 255, 0.1); /* hafif glow */
}

    .feature-icon img {
        width: 190px;
        height: 190px;
        object-fit: fill;
        border-radius: 50%; /* daire şeklinde */
    }

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: white;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1;
}
/* About page styles */
.about-content {
    display: grid;
    gap: 40px;
    margin-bottom: 10px;
    align-items: center;
}

.about-image {
    text-align: center;
}

.about-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.about-text {
    padding: 40px;
    color: white;
}

    .about-text h2 {
        font-size: 2.5rem;
        margin-bottom: 20px;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

    .about-text p {
        font-size: 1.1rem;
        line-height: 1.8;
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 20px;
    }

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.stat-card {
    text-align: center;
    padding: 30px;
    color: white;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 10px;
}
/* Team section styles */
.team-section {
    margin-bottom: 60px;
}

    .team-section h2 {
        font-size: 2.5rem;
        color: white;
        text-align: center;
        margin-bottom: 50px;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.team-member {
    padding: 40px 30px;
    text-align: center;
    color: white;
    transition: all 0.3s ease;
}

    .team-member:hover {
        transform: translateY(-10px);
    }

.team-avatar {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.team-member:hover .team-avatar {
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.25);
}

.team-member h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: white;
}

.team-member .role {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

.team-member .bio {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

    .team-social a {
        width: 36px;
        height: 36px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

        .team-social a:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-3px);
            color: white;
        }
/* Services page styles */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.service-card {
    padding: 40px 30px;
    color: white;
    text-align: left;
}

.service-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.service-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 15px;
}

.service-card h3 {
    font-size: 1.4rem;
    color: white;
}

.service-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
}

    .service-features li {
        color: rgba(255, 255, 255, 0.7);
        margin-bottom: 8px;
        padding-left: 20px;
        position: relative;
    }

        .service-features li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: rgba(255, 255, 255, 0.9);
        }
/* Contact page styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.contact-map-section {
    margin-top: 40px;
}

.contact-form {
    padding: 30px 40px;
}

    .contact-form h2 {
        color: white;
        font-size: 2rem;
        margin-bottom: 30px;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

.form-group {
    margin-bottom: 20px;
}

    .form-group label {
        display: block;
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 8px;
        font-weight: 500;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 15px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 10px;
        color: white;
        font-size: 16px;
        font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
        backdrop-filter: blur(10px);
        transition: all 0.3s ease;
    }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(255, 255, 255, 0.4);
            box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

    .form-group textarea {
        height: 120px;
        resize: vertical;
        line-height: 1.5;
    }

.contact-info {
    padding: 40px;
    color: white;
}

    .contact-info h2 {
        font-size: 2rem;
        margin-bottom: 30px;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.contact-item-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 18px;
}

.contact-item-text h4 {
    color: white;
    margin-bottom: 5px;
}

.contact-item-text a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.contact-map {
    padding: 40px;
    color: white;
    width: 100%;
}

    .contact-map h2 {
        font-size: 2rem;
        margin-bottom: 30px;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        text-align: center;
    }

.map-container {
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 oranı */
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    position: relative;
    backdrop-filter: blur(10px);
}

.map-placeholder {
    position: absolute; /* container içinde absolute yapıyoruz */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    z-index: 1; /* iframe’in önünde */
}

.map-placeholder-icon {
    font-size: 64px;
    margin-bottom: 20px;
    opacity: 0.7;
}

.map-placeholder iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    z-index: 0; /* icon ve yazının arkasında */
}

.map-placeholder p {
    margin: 8px 0;
    font-size: 16px;
}

.map-placeholder .address {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.map-placeholder .integration-note {
    font-size: 14px;
    opacity: 0.6;
    margin-top: 20px;
}
/* Footer styles */
#footer {
}

.footer-content {
    padding: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

    .footer-links a {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        font-size: 14px;
        transition: color 0.3s ease;
        padding: 5px 10px;
    }

        .footer-links a:hover {
            color: white;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
        }

.copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

    .copyright a {
        color: rgba(255, 255, 255, 0.6);
        text-decoration: none;
    }
/* Responsive design */
@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Adjust padding for mobile */
    .page {
        padding: 30px 20px 20px;
    }

    .content-wrapper {
        min-height: auto;
    }

    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }

    .hero-content {
        text-align: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    nav {
        flex-direction: column;
        gap: 20px;
        padding: 20px 30px;
    }

    .nav-links {
        gap: 15px;
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

        .nav-links a {
            display: block;
            text-align: center;
            width: 100%;
            max-width: 200px;
            font-size: 14px;
            padding: 10px 20px;
        }

    .about-content,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-links {
        gap: 15px;
        flex-direction: column;
    }

        .footer-links a {
            display: block;
            text-align: center;
        }

    button[type="submit"] {
        width: 100%;
    }

    .map-container {
        height: 350px;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
    }

    .logo {
        font-size: 22px;
    }
}
.bottom-bar {
    display: flex;
    justify-content: center; /* yatayda ortala */
    align-items: center; /* dikey ortala */
    gap: 10px; /* öğeler arası boşluk */ 
    margin-top: 20px;
}
.alt-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto; /* genişlik içeriğe göre */
    height: 32px;
    padding: 0 12px; /* biraz daha geniş padding */
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(1deg, #36b376, #3694dc7a);
    border-radius: 50px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    white-space: nowrap; /* satır kaymasını önler */
}

    .alt-count:hover {
        box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
    }

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 15px; /* yükseklik yerine padding kullanıyoruz */
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background-color: #25D366; /* WhatsApp yeşili */
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    line-height: 1; /* yazıyı dikey ortalamak için */
    white-space: nowrap; /* metin taşmasın */
}

    .whatsapp-btn:hover {
        box-shadow: 0 6px 14px rgba(0,0,0,0.25);
    }

@media (max-width: 576px) {
    .alt-count, .whatsapp-btn {
        min-width: 26px;
        height: 26px;
        font-size: 12px;
        padding: 0 8px;
    }
}

.categotyName {
    text-decoration: underline;
}

.text-white {
    color: white;
}

.loader {
    position: fixed; /* tüm sayfayı kaplar */
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7); /* yarı saydam koyu arka plan */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999; /* diğer içeriklerin üstünde */ 
}

/* araba */
.car {
    font-size: 48px;
    bottom: 40px;
    animation: driveRight 2s linear infinite;
    margin-bottom: -10px;
    z-index: 1;
}

/* yol çizgisi */
.road-line {
    transform: scaleX(-1);
    width: 130px;
    height: 4px;
    background: linear-gradient( 90deg, transparent, white, transparent );
    animation: roadMove 1.5s linear infinite;
}

/* yazı */
.loader p {
    margin-top: 5px;
    font-size: 14px;
    color: white;
    opacity: 0.8;
}
  
/* yol hareketi */
@keyframes roadMove {
    from {
        background-position: -200px;
    }

    to {
        background-position: 200px;
    }
}
@keyframes driveRight {
    0% { 
        transform: translateX(-60%) scaleX(-1);
    }

    100% { 
        transform: translateX(50%) scaleX(-1); /* arabanın tamamı sağda görünür */
    }
}
.visitor-container {
    display: flex;
    gap: 6px; /* Kutular arası boşluk azaltıldı */
    justify-content: center;
    flex-wrap: wrap;
    margin: 5px 0;
}

.visitor-box {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1f1f1f, #2c2c2c);
    color: #fff;
    padding: 6px 10px; /* Daha küçük padding */
    border-radius: 8px;
    min-width: 110px; /* Daha kompakt */
    box-shadow: 0 3px 8px rgba(0,0,0,0.2);
    transition: transform 0.2s, box-shadow 0.2s;
}

    .visitor-box:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 12px rgba(0,0,0,0.25);
    }

    .visitor-box .icon {
        font-size: 20px; /* Küçültüldü */
        margin-right: 6px;
        color: #4caf50; /* Online kullanıcı için yeşil */
    }

    .visitor-box.total .icon {
        color: #2196f3; /* Toplam ziyaretçi için mavi */
    }

    .visitor-box .info .title {
        display: block;
        font-size: 12px; /* Küçültüldü */
        opacity: 0.8;
    }

    .visitor-box .info .count {
        font-size: 16px; /* Küçültüldü */
        font-weight: bold;
        margin-top: 1px;
    }

/* Mobil uyum */
@media(max-width: 600px) {
    .visitor-container {
        flex-direction: column;
        align-items: center;
        gap: 4px;
    }
}

.whatsapp-contact-card {
    max-width: 500px;
    margin: auto;
    padding: 30px;
    background: #25D366; /* WhatsApp yeşili */
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.whatsapp-logo {
    width: 80px;
    margin-bottom: 10px;
}

.whatsapp-header h2 {
    font-size: 22px;
    margin: 0;
}

textarea#wa-message {
    width: 100%;
    border-radius: 15px;
    padding: 15px;
    font-size: 16px;
    border: none;
    resize: none;
}

.whatsapp-btn-contact {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    padding: 15px;
    border-radius: 50px;
    background-color: #128C7E;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

    .whatsapp-btn-contact:hover {
        background-color: #075E54;
    }

#scrollTopBtn {
    position: fixed;
    bottom: 100px;
    right: 25px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    z-index: 9999;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(10px);
    color: #fff;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.4);
    transition: all 0.3s ease;
}

    #scrollTopBtn:hover {
        transform: translateY(-5px) scale(1.05);
        box-shadow: 0 10px 30px rgba(0,0,0,0.6);
    }

    /* icon */
    #scrollTopBtn i {
        position: absolute;
        font-size: 18px;
    }

    /* SVG progress */
    #scrollTopBtn svg {
        position: absolute;
        width: 55px;
        height: 55px;
        transform: rotate(-90deg);
    }

    .padding-bottom-5{
        padding-bottom:5px;
    }