/* Genel Stiller */
:root {
    --primary-color: #0056b3;
    --secondary-color: #333333;
    --accent-color: #FFD700;
    --light-bg: #f8f9fa;
    --text-color: #212529;
    --white: #ffffff;
}
.service-icon {
    position: relative;
    font-size: 40px; /* kamyon ikon boyutu */
    color: #0b79d0;  /* mavi ton kurumsal renk örneği */
  }
  
  .service-icon .hook-icon {
    position: absolute;
    bottom: -5px;   /* kancayı biraz aşağıya al */
    right: -8px;    /* sağa kaydır */
    width: 22px;
    height: 22px;
    color: #0b79d0; /* aynı renk */
  }
  

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    padding-top: 80px;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Stilleri */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Logo Stilleri */
.logo img {
    max-height: 80px;  /* Logonun maksimum yüksekliği */
    width: auto;       /* Oranları korumak için */
    max-width: 200px;  /* Maksimum genişlik */
    object-fit: contain; /* Oranları koruyarak sığdır */
}

/* Mobil için logo boyutları */
@media (max-width: 768px) {
    .logo img {
        max-height: 60px;
        max-width: 150px;
    }
}

.logo h1 {
    color: var(--primary-color);
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.5px;
}

/* Ana Navigasyon */
.main-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav li {
    margin-left: 20px;
    position: relative;
}

.main-nav a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    padding: 10px 5px;
    display: block;
    -webkit-tap-highlight-color: transparent;
}

/* Mobil Menü Stilleri */
@media (max-width: 992px) {
    .main-nav {
        position: fixed;
        top: 0;
        right: -300px;
        width: 280px;
        height: 100%;
        background: var(--white);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.4s ease;
        padding: 80px 20px 30px;
        overflow-y: auto;
        z-index: 1000;
    }

    .main-nav.active {
        right: 0;
    }

    .main-nav ul {
        flex-direction: column;
    }

    .main-nav li {
        margin: 0 0 15px 0;
        opacity: 0;
        transform: translateX(20px);
        transition: all 0.3s ease;
    }

    .main-nav.active li {
        opacity: 1;
        transform: translateX(0);
    }

    .main-nav.active li:nth-child(1) { transition-delay: 0.1s; }
    .main-nav.active li:nth-child(2) { transition-delay: 0.15s; }
    .main-nav.active li:nth-child(3) { transition-delay: 0.2s; }
    .main-nav.active li:nth-child(4) { transition-delay: 0.25s; }
    .main-nav.active li:nth-child(5) { transition-delay: 0.3s; }
    .main-nav.active li:nth-child(6) { transition-delay: 0.35s; }
    .main-nav.active li:nth-child(7) { transition-delay: 0.4s; }

    .main-nav a {
        padding: 12px 0;
        font-size: 17px;
        display: block;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .mobile-menu-btn {
        display: block;
    }
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary-color);
}

.main-nav a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

.main-nav a:hover:after,
.main-nav a.active:after {
    width: 100%;
}

/* Header Contact Butonu */
.header-contact .btn-call {
    background: var(--primary-color);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    font-size: 15px;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    min-height: 46px;
}

.header-contact .btn-call i {
    margin-right: 8px;
    font-size: 16px;
}

.header-contact .btn-call:hover,
.header-contact .btn-call:active {
    background: #004494;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.header-contact .btn-call:active {
    transform: translateY(0);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Mobil Menü Butonu */
.mobile-menu-btn {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--primary-color);
    z-index: 1001;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 5px;
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}

.mobile-menu-btn:active {
    transform: scale(0.95);
    background: rgba(0, 86, 179, 0.1);
}

/* Hero Bölümü */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('../img/1.png') no-repeat center center/cover;
    min-height: 100vh;
    max-height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    margin-top: -80px;
    padding: 100px 15px 80px;
    position: relative;
    overflow: hidden;
}

/* Mobil cihazlarda hero yüksekliği */
@media (max-width: 768px) {
    .hero {
        min-height: 90vh;
        max-height: 90vh;
        padding: 100px 15px 60px;
    }
    
    .hero-content h2 {
        font-size: 32px !important;
        margin-bottom: 15px !important;
    }
    
    .hero-content p {
        font-size: 18px !important;
        margin-bottom: 25px !important;
    }
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Buton Stilleri */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn i {
    margin-right: 8px;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.15);
}

/* Hizmetler Bölümü */
.services {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    font-size: 36px;
    color: var(--secondary-color);
    position: relative;
    padding-bottom: 15px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--primary-color);
    transition: all 0.3s ease;
    z-index: -1;
    opacity: 0.1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card:hover:before {
    width: 100%;
}

.service-icon {
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    color: var(--accent-color);
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.service-card p {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
}

/* WhatsApp Butonu */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-btn:hover {
    transform: scale(1.1) translateY(-5px);
    background-color: #128C7E;
    box-shadow: 0 7px 20px rgba(37, 211, 102, 0.4);
}

/* WhatsApp Çoklu Numara Menü */
.whatsapp-wrapper {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.whatsapp-wrapper .whatsapp-btn {
    position: relative;
    z-index: 2;
}

.whatsapp-menu {
    position: absolute;
    right: 0;
    bottom: 70px; /* butonun üstünde */
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    padding: 8px;
    display: none;
    min-width: 220px;
}

.whatsapp-menu.open { display: block; }

.whatsapp-menu .menu-title {
    font-size: 13px;
    color: #666;
    padding: 6px 10px 8px;
}

.whatsapp-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 8px;
    text-decoration: none;
    color: #1f2937;
    transition: background 0.2s ease;
}

.whatsapp-option:hover {
    background: #f3f4f6;
}

.whatsapp-option i {
    color: #25D366;
    font-size: 18px;
}

.whatsapp-option .label {
    display: flex;
    flex-direction: column;
}

.whatsapp-option .name {
    font-weight: 600;
    font-size: 14px;
}

.whatsapp-option .number {
    font-size: 12px;
    color: #6b7280;
}

@media (max-width: 576px) {
    .whatsapp-wrapper { bottom: 20px; right: 20px; }
    .whatsapp-menu { bottom: 60px; min-width: 200px; }
}

/* Telefon Çoklu Numara Menü */
.call-wrapper {
    position: relative;
    display: inline-block;
}

.call-btn {
    background: var(--primary-color);
    color: #fff;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    font-size: 15px;
    text-decoration: none;
}

.call-btn i { margin-right: 8px; font-size: 16px; }

.call-btn:hover { background: #004494; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); }

.call-menu {
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    padding: 8px;
    display: none;
    min-width: 240px;
    z-index: 1001;
}

.call-menu.open { display: block; }

.call-menu .menu-title {
    font-size: 13px;
    color: #666;
    padding: 6px 10px 8px;
}

.call-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 8px;
    text-decoration: none;
    color: #1f2937;
    transition: background 0.2s ease;
}

.call-option:hover { background: #f3f4f6; }

.call-option i { color: var(--primary-color); font-size: 18px; }

.call-option .label { display: flex; flex-direction: column; }

.call-option .name { font-weight: 600; font-size: 14px; }

.call-option .number { font-size: 12px; color: #6b7280; }

@media (max-width: 992px) {
    .header-contact { position: relative; }
    .call-menu { right: auto; left: 0; }
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.section-header,
.section-divider {
    display: none;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
    margin-top: 40px;
}

.about-image {
    flex: 1;
    min-width: 300px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-image .image-container {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--primary-color);
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.experience-badge .years {
    display: block;
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
    color: var(--accent-color);
}

.experience-badge .text {
    display: block;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #222;
    position: relative;
    padding-bottom: 15px;
}

.about-text h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
}

.about-text p {
    margin-bottom: 25px;
    color: #555;
    line-height: 1.8;
    font-size: 16px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.feature-item {
    display: flex;
    gap: 15px;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 86, 179, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 20px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    background: var(--primary-color);
    color: white;
}

.feature-content h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #222;
}

.feature-content p {
    font-size: 14px;
    margin: 0;
    color: #666;
    line-height: 1.6;
}

.about-cta {
    margin-top: 30px;
}

.about-cta .btn {
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    background: var(--primary-color);
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 86, 179, 0.3);
}

.about-cta .btn:hover {
    background: #004494;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 86, 179, 0.4);
}

/* Contact Section */
.contact {
    padding: 70px 0 30px;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    margin-top: 40px;
}

.contact-info {
    background: linear-gradient(135deg, var(--primary-color), #003d82);
    padding: 40px 30px;
    border-radius: 10px;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 86, 179, 0.1);
    height: fit-content;
}

.info-box {
    display: flex;
    margin-bottom: 25px;
    align-items: flex-start;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    font-size: 18px;
}

.info-content h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--accent-color);
}

.info-content p {
    margin: 5px 0;
    opacity: 0.9;
    line-height: 1.6;
}

.info-content a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.info-content a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: var(--accent-color);
    color: var(--secondary-color);
    transform: translateY(-3px);
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-form h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.contact-form p {
    color: #666;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.1);
    outline: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn-primary {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

/* Map Section */
.map-container {
    width: 90%;
    max-width: 800px;
    height: 250px;
    margin: 20px auto 60px;
    position: relative;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        order: 2;
    }
    
    .contact-form {
        order: 1;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 70px 0;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .info-box {
        flex-direction: column;
        text-align: center;
    }
    
    .info-icon {
        margin: 0 auto 15px;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .contact-form .btn-primary {
        padding: 12px;
    }
    
    .social-links {
        flex-wrap: wrap;
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }
    
    .about-image, .about-text {
        width: 100%;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about {
        padding: 70px 0;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .about-text h3 {
        font-size: 28px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .experience-badge {
        bottom: 20px;
        right: 20px;
        padding: 15px;
    }
    
    .experience-badge .years {
        font-size: 32px;
    }
}

/* Mobil Tasarım */
@media (max-width: 992px) {
    .main-nav {
        position: fixed;
        top: 0;
        right: -300px;
        width: 280px;
        height: 100vh;
        background: white;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
        padding: 100px 30px 30px;
        transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 1000;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    .main-nav.active {
        right: 0;
    }

    .main-nav ul {
        flex-direction: column;
        width: 100%;
    }

    .main-nav li {
        margin: 0;
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }

    .main-nav a {
        display: block;
        padding: 15px 0;
        font-size: 16px;
    }

    .main-nav a:after {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .header-contact .btn-call {
        display: none;
    }

    .mobile-call-btn {
        display: block;
        background: var(--primary-color);
        color: white;
        padding: 12px 25px;
        border-radius: 50px;
        text-align: center;
        margin-top: 20px;
        text-decoration: none;
        font-weight: 500;
    }

    .hero-content h2 {
        font-size: 36px;
    }
    
    .hero-content p {
        font-size: 18px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 30px;
    }
}

/* Küçük mobil cihazlar için ek düzenlemeler */
@media (max-width: 576px) {
    .hero-content h2 {
        font-size: 28px;
    }
    
    .hero-content p {
        font-size: 16px;
    }

    .btn {
        padding: 10px 25px;
        font-size: 15px;
    }

    .service-card {
        padding: 30px 20px;
    }

    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 26px;
        bottom: 20px;
        right: 20px;
    }
}

/* Admin Paneli */
.admin {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.admin-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 25px;
}

.admin-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.admin-upload-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.upload-box {
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
}

.upload-box h4 {
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.progress {
    margin-top: 10px;
    padding: 8px 12px;
    background: rgba(0,86,179,0.08);
    color: var(--secondary-color);
    border-radius: 6px;
    font-size: 14px;
}

.result {
    margin-top: 10px;
    font-size: 14px;
    word-break: break-all;
}

.admin-error {
    margin-top: 10px;
    color: #e74c3c;
    font-size: 14px;
}

@media (max-width: 768px) {
    .admin {
        padding: 70px 0;
    }
    .admin-top {
        flex-direction: column;
        align-items: stretch;
    }
}

/* Admin liste kartları */
.admin-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
}

.admin-list .muted { color: #6b7280; font-size: 14px; }

.admin-card-item {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.admin-card-item .thumb {
    position: relative;
    width: 100%;
    height: 120px;
    background: #f3f4f6;
    overflow: hidden;
}

.admin-card-item .thumb img,
.admin-card-item .thumb video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.admin-card-item .meta {
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.admin-card-item .meta .name {
    font-size: 13px;
    color: #374151;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.admin-card-item .actions {
    display: flex;
    gap: 8px;
}

/* Küçük buton varyantı */
.btn.btn-sm {
    padding: 8px 12px;
    font-size: 13px;
    border-radius: 8px;
}

@media (max-width: 576px) {
    .admin-list { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
    .admin-card-item .thumb { height: 100px; }
}

/* Galeri Önizleme */
.gallery-preview {
    padding: 100px 0;
    background: #ffffff;
}

.gallery-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.gallery-block {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    padding: 20px;
}

.gallery-block-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: #f5f5f5;
    cursor: pointer; /* click edilebilir his ver */
}

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
    transition: transform .3s ease, height .25s ease;
}

.gallery-item:hover img,
.gallery-item:hover video {
    transform: scale(1.04);
}

.gallery-item video,
.gallery-item .video-thumb {
    transition: transform .18s ease, height .25s ease;
}

/* Basılı tutarken (click anında) biraz daha büyüt */
.gallery-item:active img,
.gallery-item:active video,
.gallery-item:active .video-thumb {
    transform: scale(1.08);
}

.gallery-item.clicked video,
.gallery-item.clicked .video-thumb,
.gallery-item.clicked img {
    transform: scale(1.04);
}

.gallery-grid .gallery-item.enlarged {
    grid-column: span 2;
    grid-row: span 2;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0,0,0,0.18);
}

.gallery-grid .gallery-item.enlarged img,
.gallery-grid .gallery-item.enlarged video,
.gallery-grid .gallery-item.enlarged .video-thumb {
    height: 340px;
    transform: none; /* hover/active ölçeklemeyi baskıla, gerçek büyüme sağla */
}

@media (max-width: 576px) {
    .gallery-grid .gallery-item.enlarged img,
    .gallery-grid .gallery-item.enlarged video,
    .gallery-grid .gallery-item.enlarged .video-thumb {
        height: 280px;
    }
}

/* Galeri Sayfası */
.gallery-page {
    padding: 100px 0;
    background: var(--light-bg);
}

.tabs {
    display: inline-flex;
    gap: 10px;
    background: #fff;
    border-radius: 50px;
    padding: 6px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    margin-bottom: 25px;
}

.tab-btn {
    border: none;
    background: transparent;
    padding: 10px 18px;
    border-radius: 40px;
    cursor: pointer;
    font-weight: 500;
    color: var(--secondary-color);
}

.tab-btn.active {
    background: var(--primary-color);
    color: #fff;
}

.tab-content { display: none; }
.tab-content.active { display: block; }

/* Responsive tweaks */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    }
}

/* Load More */
.gallery-actions {
    margin-top: 15px;
    text-align: center;
}

.gallery-actions .btn {
    background: var(--primary-color);
    color: #fff;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
}

.lightbox.active { display: flex; }

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-content img,
.lightbox-content video {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 8px;
    display: block;
}

.lightbox-close {
    position: absolute;
    top: -12px;
    right: -12px;
    background: #fff;
    color: #333;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

@media (max-width: 768px) {
    .lightbox-content img,
    .lightbox-content video {
        max-width: 100vw;
        max-height: 80vh;
    }
}

/* Video thumb (hafif önizleme) */
.video-thumb {
    position: relative;
    width: 100%;
    height: 160px;
    background: linear-gradient(135deg, #111, #333);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.video-thumb .play-badge {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.video-thumb .play-badge i { font-size: 20px; margin-left: 3px; }

/* Admin kartları için daha küçük yükseklik uyumu */
.admin-card-item .thumb.video-thumb { height: 120px; }

@media (max-width: 576px) {
    .video-thumb { height: 130px; }
    .admin-card-item .thumb.video-thumb { height: 100px; }
}

/* Footer */
.site-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 0 0;
    font-size: 14px;
    line-height: 1.8;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo .footer-logo-img {
    max-height: 60px;
    width: auto;
    margin-bottom: 15px;
}

.footer-logo p {
    color: #aaa;
    margin-top: 10px;
}

.footer-links h4,
.footer-contact h4 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4:after,
.footer-contact h4:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-color);
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    color: #aaa;
}

.footer-contact i {
    color: var(--accent-color);
    margin-right: 10px;
    margin-top: 4px;
    width: 16px;
    text-align: center;
}

.footer-contact a {
    color: #aaa;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-contact a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    color: #777;
    font-size: 13px;
}

.copyright {
    margin: 5px 0;
}

.credits a {
    color: var(--accent-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.credits a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .footer-links h4,
    .footer-contact h4 {
        margin-top: 20px;
    }
}