body { margin: 0; font-family: Arial, sans-serif;background: #ffd500;}
h2{text-align: center;}
/* Header */
header {
    background:#4e4e4e;
    padding: 6px 2px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
}
.logo { margin-left: 14px; display: flex; align-items: center; }
.logo img { height: 31px; width: auto; display: block; }
.admin-link-new img {transition: all 0.3s ease; vertical-align: middle;} .admin-link-new img:hover { transform: scale(1.15 );filter: brightness(1.3);}
.social {
    display: flex;
    gap: 9,4px;
    align-items: center;
}
.social img {
    transition: transform 0.3s ease;
}
.social img:hover {
    transform: scale(1.3); 
}
/* Galeri Slider */
.gallery {
    padding: 30px;
    text-align: center;
}
.slider {
    display: flex;
    overflow-x: auto;
    gap: 15px;
}
.slider img {
    width: 300px;
    height: 200px;
    border-radius: 10px;
    object-fit: cover;
}
/* Map Konum yazısı */
.map {
    padding: 30px;
    text-align: center;
}
/* Sabit Ara Butonu */
.call-fixed {
    position: fixed;
    right: 20px; bottom: 20px;
    background: #1900ff;
    color: #fffb00;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 900;
    text-decoration: none;
    display: flex; align-items: center; gap: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 9999;
    animation: titre-hizli 3s infinite;
}
@keyframes titre-hizli {
    0% { transform: rotate(0); }
    5% { transform: rotate(-8deg); }
    10% { transform: rotate(8deg); }
    15% { transform: rotate(-8deg); }
    20% { transform: rotate(8deg); }
    25% { transform: rotate(-8deg); }
    30% { transform: rotate(8deg); }
    35% { transform: rotate(-8deg); }
    40% { transform: rotate(8deg); }
    45% { transform: rotate(-8deg); }
    50% { transform: rotate(8deg); }
    55% { transform: rotate(-8deg); }
    60% { transform: rotate(8deg); }
    66% { transform: rotate(0); }
    100% { transform: rotate(0); }
}
/*kaydırmalı*/
.scrolling-text {
  width: 100%;
  overflow: hidden;
  background: #0004ff;
  color: #ffee00;
  white-space: nowrap;
  box-sizing: border-box;
  padding: 10px 0;
  font-size: 18px;
  font-style: italic;
  font-weight: bolder;
}
.scrolling-text span {
  display: inline-block;
  padding-left: 100%;
  animation: scroll 10s linear infinite;
}
@keyframes scroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
/*sabitResim*/
.parallax {
  height: 500px;
  background-image: url(resim/calısma/l1.jpg.jpeg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
@media (max-width: 768px) {
  .parallax {
    background-attachment: scroll; 
    height: 300px; 
  }
}
/* Markalar  alanı */
.markalar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin: 30px 0;
    font-weight: bold;
    flex-wrap: wrap; 
}
.marka {
    padding: 15px 35px;
    border-radius: 15px;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    cursor: default;
    transition:  transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}
.marka:hover {
    transform: translateY(-6px) scale(1.04);
    box-shadow: 0px 6px 18px rgba(0,0,0,0.25);
}
.triangle {background-color: #005bbb; color: white;}
.goodyear {background-color: #003f88; color: #ffcc00;}
.nexen { background-color: #6a1b9a;color: white;}
.lassa{ background-color: white;color: red;}
.modal-icerik-kucuk {
    background: rgb(65, 65, 65); padding: 20px; border-radius: 15px;
    width: 90%; max-width: 500px; position: relative;
}
.modal-esnek { display: flex; align-items: center; gap: 20px; }
.modal-sol { flex: 1; }
.modal-sag { flex: 1.2; }
.kapat {
    position: absolute; right: 20px; top: 10px;
    font-size: 28px; cursor: pointer; color: rgb(255, 0, 0); font-weight: bold;
}
@media (max-width: 500px) {
    .modal-esnek { flex-direction: column; text-align: center; }
}
/* NedenBİz? */
.nedenbiz {
    text-align: center;
    margin: 50px 0;
}
.neden-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 15px 20px; 
    justify-content: end;
    padding: 0 20px;
}
.neden-kutu {
    background: #c9c9c9;
    border-radius: 10px;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: bolder;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.neden-kutu:hover {
    transform: translateY(-4px);
    box-shadow: 0px 5px 12px rgba(0,0,0,0.2);
}
@media(max-width: 768px) {
    .neden-grid {
        grid-template-columns: 1fr;
        justify-content: center;
    }
}
.benimB
{ background-color: #8f8f8f;
  color: rgb(0, 0, 0);
  cursor: pointer;
  padding: 15px 20px;
  width: 300px;
  border: none;
  text-align: left;
  font-weight: bold;
  font-size: 18px;
  transition: background-color 0.3s ease;
  border-radius: 100px;
  user-select: none;
  box-sizing: border-box;
  margin-left: 50px;
  text-decoration: none;} .benimB:hover, 
  .accordion.active { background-color: #1f1f1f;}
  .butonlarım {
    display: flex;
    justify-content: space-between;
    max-width: 550px;  
    margin: 0 auto;   
     margin-bottom: -25px; 
}
.benim2 {
  background-color: #0044ff;
  color: black;
  cursor: pointer;
  padding: 2px 6px;
  border: none;
  font-weight: bold;
  font-size: 14px;
  border-radius: 25px;
  user-select: none;
  box-sizing: border-box;
  text-decoration: none;
  display: block;
  margin: 0 auto;
  position: absolute; 
  top: 275px;          
  right: 10px;       
  width: auto;       
}.benim2:hover{background-color: #1400ad;}
/*o buton iste*/
.accordion {
  background-color: #0044ff;
  color: rgb(0, 0, 0);
  cursor: pointer;
  padding: 15px 20px;
  width: 300px;
  border: none;
  text-align: left;
  font-weight: bold;
  font-size: 18px;
  transition: background-color 0.3s ease;
  border-radius: 25px;
  user-select: none;
  box-sizing: border-box;
  margin-left: 50px;
  text-decoration: none;}.accordion:hover, .accordion.active {background-color: #1400ad;}.panel {background-color: #2a04ff;padding: 15px 20px;margin-top: 2px;display: none;border-radius: 0 0 6px 6px;box-sizing: border-box;}.panel img {width: 120px;margin-right: 15px;border-radius: 6px;border: 2px solid #444;vertical-align: middle;}
  /* Footer */
footer {
    background-color: #212529; 
    color: #adb5bd; 
    padding: 40px 5%;
    font-size: 0.9em;
}
.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 30px auto;
}
.footer-section {
    flex: 1;
    min-width: 250px;
}
.footer-section h3 {
    color: #ffffff; 
    margin-bottom: 20px;
    font-size: 1.2em;
    font-weight: 600;
}
.footer-section p {
    margin-bottom: 10px;
    line-height: 1.8;
}
.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-section ul li {
    margin-bottom: 10px;
}
.footer-section ul li a {
    color: #adb5bd;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-section ul li a:hover {
    color: #007bff; 
}
.footer-section.contact p i {
    margin-right: 10px;
    color: #007bff;
}
.footer-section.contact a {
    color: #adb5bd;
    text-decoration: none;
}
.footer-section.contact a:hover {
    color: #007bff;
}
.footer-social-links {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}
.footer-social-links img {
    transition: transform 0.3s ease;
}
.footer-social-links img:hover {
    transform: translateY(-5px);
}
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #343a40;
    margin-top: 20px;
    color: #6c757d;
}
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-section {
        min-width: 100%;
        margin-bottom: 30px;
    }
    .footer-social-links {
        justify-content: center;
    }
}
                 /*      85858585      ADMİN      858585858            !!--       */
 .admin-container {
    background: rgb(100, 100, 100);
    width: 100%;
    max-width: 400px; /* 500 → 400 */
    border-radius: 18px; /* 25 → 18 */
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
    overflow: hidden;
    border-top: 8px solid #1900ff; /* 10 → 8 */
}
.admin-header {
    background:  rgb(100, 100, 100);
    padding: 20px; /* 30 → 20 */
    text-align: center;
    border-bottom: 1px solid #eee;
}
.admin-header h2 {
    margin: 0;
    color: #1900ff;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px; /* 2 → 1.5 */
    font-size: 20px; /* eklendi */
    font-style: italic;
}
.admin-header h3 {
    margin: 8px 0 0;
    color: #ffffff;
    font-size: 15px; /* 18 → 15 */
}
.admin-content {
    padding: 15px; /* 20 → 15 */
}
.fake-button {
    display: flex;
    align-items: center;
    gap: 15px; /* 20 → 15 */
    background: #9b9b9b;
    padding: 12px 15px; /* 15 20 → 12 15 */
    border-radius: 12px; /* 15 → 12 */
    margin-bottom: 12px; /* 15 → 12 */
    cursor: not-allowed;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}
.fake-button:hover {
    background: #222222;
    border-color: #1900ff;
    transform: translateX(3px); /* 5px → 3px */
}
.fake-button i {
    font-size: 22px; /* 28 → 22 */
    color: #1900ff;
    width: 32px; /* 40 → 32 */
    text-align: center;
}
.fake-button .text strong {
    display: block;
    font-size: 14px; /* 16 → 14 */
    color: #000000;
}
.fake-button .soon {
    font-size: 11px; /* 12 → 11 */
    color: #1100ff;
    font-style: italic;
}
.update-btn {
    width: 100%;
    padding: 12px; /* 15 → 12 */
    background: #1900ff;
    color: white;
    border: none;
    border-radius: 12px; /* 15 → 12 */
    font-weight: bold;
    font-size: 14px; /* 16 → 14 */
    cursor: pointer;
    margin-top: 8px; /* 10 → 8 */
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px; /* 10 → 8 */
}
.update-btn:hover {
    background: #000bbd;
    box-shadow: 0 4px 10px rgba(25,0,255,0.25);
}
               /*     85858585858     LOGİN     8585858585     !!--         */
  .login-card {
  background:rgb(100, 100, 100);
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
  width: 90%;
  max-width: 340px;
  text-align: center;
  border-top: 6px solid #1900ff;
}
.login-card h2 {
  color: #1900ff;
  margin-bottom: 20px;
  font-weight: 900;
  letter-spacing: 0.8px;
  font-size: 20px;
  font-style: italic;
}
.input-group {
  margin-bottom: 15px;
  position: relative;
}
input {
  width: 100%;
  padding: 10px 12px;
  border: 2px solid #0011ff;
  border-radius: 8px;
  box-sizing: border-box;
  font-size: 14px;
  transition: all 0.3s;
}
input:focus {
  border-color: #73ff00;
  outline: none;
  box-shadow: 0 0 6px rgba(25,0,255,0.1);
}
.password-wrapper {
  position: relative;
  width: 100%;
}
.toggle-password {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 18px;
  user-select: none;
}
.btn-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 15px;
}
button {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-login {
  background-color: #1900ff;
  color: white;
}
.btn-login:hover {
  background-color: #000bbd;
  transform: translateY(-1px);
}
.btn-home {
  background-color: #f0f0f0;
  color: #333;
}
.btn-home:hover {
  background-color: #333;
}
@media (max-width: 480px) {
  .login-card {
    padding: 22px;
    max-width: 100%;
    border-radius: 14px;
  }
  .login-card h2 {
    font-size: 18px;
  }
  input {
    font-size: 13px;
    padding: 9px 11px;
  }
  button {
    font-size: 13px;
    padding: 9px;
  }
  .toggle-password {
    font-size: 16px;
  }
}
           /*       İLK REKLAM      */
.modal {
    display: flex; 
    position: fixed;
    z-index: 9999;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.8); 
    justify-content: center;
    align-items: center;
}
.modal-icerik {
    position: relative;
    background-color: rgb(0, 0, 0);
    padding: 10px;
    border-radius: 10px;
    max-width: 420px;
    width: 90%;
}
.kapat-butonu {
    position: absolute;
    right: 27px; top: 23px;
    font-size: 40px;
    cursor: pointer;
    color: rgb(255, 0, 0);
    font-weight: bold;
}
#scrollTopBtn {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 30px;
  height: 30px;
  background: blue;
  color: #FFD700;
  font-size: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  z-index: 9999;
}

#scrollTopBtn.show {
  opacity: 1;
  visibility: visible;
}

#scrollTopBtn:hover {
  transform: translateY(-5px);
}
/*tarih saat555555555555555*/
.saat-konumlandirici {
    display: flex;
    justify-content: center;
    margin: 10px 0;}.ozel-saat-kutusu {
    display: flex;            
    align-items: center;      
    gap: 15px;                
    background-color: #000000;
    color: #ffffff;
    padding: 8px 20px;       
    border-radius: 50px;     
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    font-family: 'Segoe UI', Tahoma, sans-serif;}
#tarih-alani {
    font-size: 0.85rem;      
    color: #0400ff;
    border-right: 1px solid #ffffff; 
    padding-right: 15px;}
#saat-alani {
    font-size: 1.1rem;        
    font-weight: 600;
    color: #eeff00;
    min-width: 80px;}

              /*        8585858585     ebat ve ps    8 5 85858585858    */

/* Main Content */
        main {
            padding: 2rem 1rem;
        }
        .content-wrapper {
            max-width: 800px;
            margin: 0 auto;
        }
        /* Cards */
        .card {
            background: white;
            border: 1px solid #e2e8f0;
            border-radius: 0.65rem;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        .card:hover {
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        .card-header {
            margin-bottom: 1rem;
        }
        .card-title {
            font-size: 1.125rem;
            color: #0f172a;
            margin-bottom: 0.25rem;
        }
        .card-description {
            font-size: 0.875rem;
            color: #64748b;
        }
        /* Selection Grid */
        .selection-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }
        @media (max-width: 640px) {
            .selection-grid {
                grid-template-columns: 1fr;
            }
        }
        /* Form Elements */
        label {
            display: block;
            font-size: 0.875rem;
            font-weight: 500;
            color: #475569;
            margin-bottom: 0.5rem;
        }
        select {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid #e2e8f0;
            border-radius: 0.5rem;
            font-size: 1rem;
            color: #1e293b;
            background: white;
            cursor: pointer;
            transition: all 0.2s ease;
        }
        select:hover {
            border-color: #cbd5e1;
        }
        select:focus {
            outline: none;
            border-color: #1e40af;
            box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
        }
        select:disabled {
            background: #f1f5f9;
            color: #94a3b8;
            cursor: not-allowed;
        }
        /* Results Section */
        .results {
            display: none;
            animation: fadeIn 0.3s ease;
        }
        .results.show {
            display: block;
        }
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        /* Vehicle Info Card */
        .vehicle-info {
            background: linear-gradient(135deg, #fedbf8 0%, #f0f9ff 100%);
            border: 1px solid #bfdbfe;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
        }
        .vehicle-info h2 {
            font-size: 1.5rem;
            color: #1e3a8a;
            margin-bottom: 0.5rem;
        }
        .vehicle-info .type {
            color: #1e40af;
            font-size: 0.875rem;
            margin-bottom: 0.75rem;
        }
        .vehicle-info .notes {
            color: #334155;
            font-style: italic;
            font-size: 0.95rem;
        }
        .vehicle-icon {
            width: 55px;
            height: 80px;
            background: #af1e1e;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            flex-shrink: 0;
        }
        /* Pressure Grid */
        .pressure-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }
        @media (max-width: 640px) {
            .pressure-grid {
                grid-template-columns: 1fr;
            }
        }
        .pressure-card {
            background: white;
            border: 1px solid #e2e8f0;
            border-radius: 0.65rem;
            padding: 1.5rem;
        }
        .pressure-card h3 {
            font-size: 1rem;
            color: #0f172a;
            margin-bottom: 1rem;
        }
        .pressure-value {
            padding: 1rem;
            border-radius: 0.5rem;
            margin-bottom: 1rem;
            text-align: center;
        }
        .pressure-value.good {
            background: #dcfce7;
            color: #166534;
        }
        .pressure-value.warning {
            background: #fef3c7;
            color: #b45309;
        }
        .pressure-value.critical {
            background: #fee2e2;
            color: #991b1b;
        }
        .pressure-label {
            font-size: 0.875rem;
            font-weight: 500;
            margin-bottom: 0.5rem;
            display: block;
        }
        .pressure-number {
            font-size: 2rem;
            font-weight: 700;
        }
        .pressure-unit {
            font-size: 0.875rem;
            font-weight: 500;
        }
        /* Metric Card */
        .metric-card {
            background: #f1f5f9;
            padding: 1rem;
            border-radius: 0.5rem;
            text-align: center;
        }
        .metric-label {
            font-size: 0.875rem;
            font-weight: 500;
            color: #475569;
            margin-bottom: 0.5rem;
            display: block;
        }
        .metric-value {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1e293b;
        }
        /* Warning Box */
        .warning-box {
            background: #fffbeb;
            border: 1px solid #fde68a;
            border-radius: 0.65rem;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
        }
        .warning-box h3 {
            color: #92400e;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .warning-box ul {
            list-style: none;
            padding: 0;
        }
        .warning-box li {
            color: #92400e;
            font-size: 0.95rem;
            margin-bottom: 0.5rem;
            padding-left: 1.5rem;
            position: relative;
        }
        .warning-box li:before {
            content: "•";
            position: absolute;
            left: 0;
        }
        /* Empty State ilk logo olan yer */
        .empty-state {
            text-align: center;
            padding: 3rem 1.5rem;
            background: #4e4e4e;
            border-radius: 0.65rem;
            border: 1px dashed #cbd5e1;
        }
        .empty-state-icon {
            width: 64px;
            height: 64px;
            background: #006eff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            font-size: 32px;
        }
        .empty-state p {
            color: #64748b;
            font-size: 1rem;
        }
        /* Buttons */
        .button-group {
            display: flex;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }
        button {
            padding: 0.75rem 1.5rem;
            border: none;
            border-radius: 0.5rem;
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s ease;
        }
        .btn-primary {
            background: #1e40af;
            color: white;
            width: 100%;
        }
        .btn-primary:hover {
            background: #1e3a8a;
        }
        .btn-secondary {
            background: white;
            color: #1e40af;
            border: 1px solid #1e40af;
            width: 100%;
        }

        .btn-secondary:hover {
            background: #72727244;
        }
         * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

