﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", Tahoma, Arial, sans-serif;
    background: #fafafa;
    color: #333;
}

header h1 {
    font-size: 42px;
    letter-spacing: 3px;
    font-weight: 700;
}

header h2 {
    margin-top: 10px;
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 4px;
    color: #d4af37; /* gold */
}

.container {
    max-width: 1900px;
    margin: 10px auto;
    padding: 0 10px;
    text-align: center;
}

    .container h3 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .container p {
        font-size: 17px;
        line-height: 1.7;
        margin-bottom: 25px;
        color: #555;
    }

.badge {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    letter-spacing: 1px;
}

footer {
    margin-top: 80px;
    padding: 25px;
    background: #1f1f1f;
    text-align: center;
    color: #aaa;
    font-size: 14px;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.time-box {
    width: 110px;
    height: 110px;
    background: #1f1f1f;
    border-radius: 16px;
    color: #d4af37;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    animation: pulse 2s infinite;
}

    .time-box span {
        font-size: 34px;
        font-weight: 700;
    }

    .time-box small {
        font-size: 13px;
        letter-spacing: 1px;
        color: #ccc;
        margin-top: 5px;
    }

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(212,175,55,0.4);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 15px rgba(212,175,55,0.6);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(212,175,55,0.4);
    }
}

.map-wrapper {
    max-width: 900px;
    margin: 40px auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

    .map-wrapper iframe {
        width: 100%;
        height: 320px;
        border: 0;
    }

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0 50px;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

    .btn i {
        font-size: 20px;
    }

    .btn.whatsapp {
        background: #25d366;
    }

    .btn.call {
        background: #1f1f1f;
        border: 1px solid #d4af37;
    }

    .btn:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    }

    .btn.call:hover {
        background: #d4af37;
        color: #1f1f1f;
    }

.appointment-form {
    max-width: 500px;
    margin: 40px auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

    .appointment-form input,
    .appointment-form select {
        padding: 10px;
        border-radius: 6px;
        border: 1px solid #ccc;
    }

    .appointment-form button {
        padding: 12px;
        background: #d4af37;
        border: none;
        font-weight: 600;
        cursor: pointer;
    }

.badge-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.badge-logo {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: auto;
    z-index: 2;
}

.badge {
    display: inline-block;
    padding: 8px 20px;
    background: #000;
    color: #fff;
    font-weight: 600;
    border-radius: 20px;
    letter-spacing: 1px;
}

.map-logo-wrapper {
    text-align: center;
    margin: 30px 0 10px;
}

    .map-logo-wrapper img {
        width: 120px;
        height: auto;
        opacity: 0.95;
    }
/* HEADER */
.appointments-header {
    text-align: center;
    margin-bottom: 20px;
}

.appointments-logo {
    max-width: 220px;
    margin-bottom: 10px;
}

.appointments-header h2 {
    font-weight: 700;
    margin-bottom: 5px;
}

.appointments-slogan {
    color: #777;
    font-style: italic;
    margin-bottom: 20px;
}

/* CREATE BUTTON */
.btn-create {
    background: linear-gradient(135deg, #000, #333);
    color: #fff;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
}

    .btn-create:hover {
        background: #111;
    }

/* TABLE */
.table-wrapper {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.appointments-table {
    width: 100%;
    border-collapse: collapse;
}

    .appointments-table th {
        background: #f8f8f8;
        text-align: left;
        padding: 12px;
        font-weight: 600;
    }

    .appointments-table td {
        padding: 12px;
        border-bottom: 1px solid #eee;
    }

/* STATUS */
.status {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

    .status.approved {
        background: #e6f7ee;
        color: #1e8e5a;
    }

    .status.pending {
        background: #fff4e5;
        color: #d48806;
    }

/* ACTION BUTTONS */
.action-buttons {
    display: flex;
    gap: 8px;
}

    .action-buttons .btn {
        padding: 8px 10px;
        border-radius: 8px;
        color: #fff;
        text-decoration: none;
    }

.btn-details {
    background: #5a67d8;
}

.btn-edit {
    background: #38a169;
}

.btn-delete {
    background: #e53e3e;
}

.action-buttons .btn:hover {
    opacity: 0.85;
}

.btn-appointment {
    background: linear-gradient(135deg, #1c1c1c, #2b2b2b);
    color: #f5f5f5;
    font-size: 1.1rem;
    padding: 14px 48px;
    border-radius: 40px;
    border: 1px solid #c9a24d; /* gold detay */
    transition: all 0.3s ease;
}

    .btn-appointment:hover {
        background: linear-gradient(135deg, #000000, #1f1f1f);
        color: #ffffff;
        transform: translateY(-2px);
        box-shadow: 0 12px 25px rgba(0,0,0,0.4);
    }

.btn-vip-create {
    background: linear-gradient(135deg, #1c1c1c, #2d2d2d);
    color: #f5f5f5 !important;
    padding: 14px 52px;
    border-radius: 40px;
    font-size: 1.1rem;
    border: 1px solid #c9a24d;
    transition: all 0.3s ease;
}

    .btn-vip-create:hover {
        background: linear-gradient(135deg, #000, #1a1a1a);
        transform: translateY(-2px);
        box-shadow: 0 12px 30px rgba(0,0,0,0.4);
    }

.badge {
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
}

.bg-warning {
    background-color: #1f1f1f !important;
    color: #c9a24d !important;
}
/* Action icon container */
.action-group {
    display: inline-flex;
    gap: 8px;
    align-items: center;
}

/* Base icon style */
.action-icon {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    transition: all 0.25s ease;
}

    /* Edit */
    .action-icon.edit {
        background: linear-gradient(135deg, #3b3b3b, #1f1f1f);
    }

    /* Detail */
    .action-icon.detail {
        background: linear-gradient(135deg, #555, #2f2f2f);
    }

    /* Delete */
    .action-icon.delete {
        background: linear-gradient(135deg, #8b0000, #4d0000);
    }

    /* Hover effects */
    .action-icon:hover {
        transform: scale(1.12);
        box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
        opacity: 0.95;
    }

    /* Focus accessibility */
    .action-icon:focus {
        outline: none;
        box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.5);
    }

/* Mobile optimization */
@media (max-width: 768px) {
    .action-icon {
        width: 30px;
        height: 30px;
        font-size: 13px;
    }
}
/* Filter Card */
.filter-card {
    background: #111;
    border-radius: 16px;
    border: 1px solid rgba(212,175,55,0.25);
}

/* Labels */
.filter-label {
    font-size: 13px;
    font-weight: 600;
    color: #d4af37;
    margin-bottom: 4px;
}

/* Inputs */
.filter-input {
    border-radius: 30px;
    border: 1px solid #333;
    background: #1c1c1c;
    color: #fff;
    padding: 8px 14px;
}

    .filter-input::placeholder {
        color: #aaa;
    }

    .filter-input:focus {
        border-color: #d4af37;
        box-shadow: 0 0 0 0.15rem rgba(212,175,55,0.25);
        background: #1c1c1c;
        color: #fff;
    }

/* Reset Button */
.btn-filter-reset {
    height: 42px;
    border-radius: 50%;
    background: #1c1c1c;
    color: #d4af37;
    border: 1px solid #333;
    transition: all 0.25s ease;
}

    .btn-filter-reset:hover {
        background: #d4af37;
        color: #111;
    }

.footer-custom {
    background: linear-gradient(90deg, #212529, #343a40); /* gradient arka plan */
    border-top: 2px solid #0d6efd; /* mavi ayırıcı çizgi */
}

    .footer-custom a {
        transition: color 0.3s ease;
    }

        .footer-custom a:hover {
            color: #0dcaf0; /* hover efekti */
        }

/* DataTables export butonlarını küçültme */
.dt-buttons .btn {
    padding: 4px 8px;
    font-size: 0.8rem;
    line-height: 1.2;
}

    .dt-buttons .btn i {
        font-size: 0.9rem;
        margin-right: 0; /* ikon-only olduğu için boşluk kaldırıldı */
    }
/* Outline butonlar için net renkler */
.btn-outline-primary {
    color: #0d6efd;
    border-color: #0d6efd;
}

    .btn-outline-primary:hover {
        background-color: #0d6efd;
        color: #fff;
    }

.btn-outline-danger {
    color: #dc3545;
    border-color: #dc3545;
}

    .btn-outline-danger:hover {
        background-color: #dc3545;
        color: #fff;
    }

.btn-outline-secondary {
    color: #6c757d;
    border-color: #6c757d;
}

    .btn-outline-secondary:hover {
        background-color: #6c757d;
        color: #fff;
    }

/* Danger butonlar (Sil vb.) için yazı rengi beyaz */
.btn-danger {
    color: #fff;
}
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #1f2937;
    color: #ffffff;
    padding: 15px;
    z-index: 9999;
    display: none;
}

.cookie-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

    .cookie-content p {
        margin: 0;
        font-size: 14px;
    }

    .cookie-content a {
        color: #38bdf8;
        text-decoration: underline;
    }

.cookie-buttons {
    display: flex;
    gap: 8px;
}
.footer-custom a:hover {
    color: #0dcaf0 !important;
    transition: 0.3s;
}
.social-icon {
    font-size: 20px;
    color: #ffffff;
    transition: all 0.3s ease;
}

    .social-icon.instagram:hover {
        color: #e1306c;
    }

    .social-icon.tiktok:hover {
        color: #69c9d0;
    }

    .social-icon.facebook:hover {
        color: #1877f2;
    }

.footer-custom a:hover {
    opacity: 0.85;
}
body {
    font-family: 'Segoe UI', sans-serif;
    background: #f5f6f8;
}

/* HERO */
.hero {
    background: linear-gradient(135deg, #ffffff, #eef2f3);
    padding: 90px 20px 60px;
}

    .hero h1 {
        font-weight: 700;
        letter-spacing: .5px;
        color: #212529;
    }

    .hero p {
        max-width: 700px;
        margin: auto;
    }

    .hero img {
        filter: drop-shadow(0 4px 10px rgba(0,0,0,.1));
    }

/* BUTTONS */
.contact-options .btn {
    min-width: 210px;
    border-radius: 50px;
    font-weight: 500;
    transition: all .3s ease;
}

    .contact-options .btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0,0,0,.15);
    }

/* SLIDER */
.carousel-item img {
    height: 550px;
    object-fit: cover;
    border-radius: 16px;
}

/* CAMPAIGN BOX */
.campaign-box {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(0,0,0,.08);
    border-left: 6px solid #198754;
}

    .campaign-box h2 {
        font-weight: 700;
    }

    .campaign-box ul li {
        margin-bottom: 10px;
        font-size: 15px;
    }

        .campaign-box ul li i {
            color: #198754;
            margin-right: 6px;
        }
/* TRUST BAR */
.trust-bar {
    background: #ffffff;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.trust-item {
    padding: 15px;
}

    .trust-item i {
        font-size: 32px;
        color: #198754;
        margin-bottom: 10px;
    }

    .trust-item h6 {
        font-weight: 600;
        margin-bottom: 4px;
        color: #212529;
    }

    .trust-item p {
        font-size: 14px;
        color: #6c757d;
        margin: 0;
    }