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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    min-height: 100vh;
    position: relative;
    margin: 0;
    padding: 0;
    background-color: #1a1a1a;
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url('../background.png');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
}

/* Desktop için fixed background */
@media only screen and (min-width: 769px) {
    body {
        background-attachment: fixed;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: #1a1a1a;
    background: rgba(26, 26, 26, 0.95);
    padding: 2rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    margin-bottom: 2rem;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

header h1 {
    color: #dc143c;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

header p {
    color: #ffffff;
    font-size: 1.1rem;
}

main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (max-width: 968px) {
    main {
        grid-template-columns: 1fr;
    }
}

.appointment-form,
.appointments-list {
    background: #1a1a1a;
    background: rgba(26, 26, 26, 0.9);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(220, 20, 60, 0.3);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

h2 {
    color: #dc143c;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-weight: 600;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="number"],
input[type="date"],
select,
textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #333;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
    background: #2a2a2a;
    color: #ffffff;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #dc143c;
}

select:disabled {
    background-color: #1a1a1a;
    cursor: not-allowed;
    opacity: 0.5;
}

textarea {
    resize: vertical;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.checkbox-label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0.75rem;
    background: #2a2a2a;
    border: 2px solid #333;
    border-radius: 5px;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    font-weight: normal;
}

.checkbox-label:hover {
    border-color: #dc143c;
    background: #333;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
    cursor: pointer;
    accent-color: #dc143c;
}

.checkbox-label input[type="checkbox"]:checked ~ span {
    color: #dc143c;
    font-weight: 600;
}

.checkbox-label:has(input[type="checkbox"]:checked) {
    border-color: #dc143c;
    background: #1a1a1a;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: #dc143c;
    background: -webkit-gradient(linear, left top, right bottom, from(#dc143c), to(#1a1a1a));
    background: -o-linear-gradient(top left, #dc143c 0%, #1a1a1a 100%);
    background: linear-gradient(135deg, #dc143c 0%, #1a1a1a 100%);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    -webkit-transition: -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
    transition: -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
    -o-transition: transform 0.2s, box-shadow 0.2s;
    transition: transform 0.2s, box-shadow 0.2s;
    transition: transform 0.2s, box-shadow 0.2s, -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
}

.btn-submit:hover {
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
    -webkit-box-shadow: 0 5px 15px rgba(220, 20, 60, 0.4);
    box-shadow: 0 5px 15px rgba(220, 20, 60, 0.4);
}

.btn-submit:active {
    transform: translateY(0);
}

.appointment-card {
    background: #2a2a2a;
    background: rgba(42, 42, 42, 0.95);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border: 1px solid #333;
    border-left: 4px solid #dc143c;
}

.appointment-card h3 {
    color: #dc143c;
    margin-bottom: 0.5rem;
}

.appointment-card p {
    margin: 0.3rem 0;
    color: #ffffff;
}

.appointment-card .service-badge {
    display: inline-block;
    background: #dc143c;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.btn-delete {
    background: #1a1a1a;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

.btn-delete:hover {
    background: #000000;
}

.empty-state {
    text-align: center;
    padding: 2rem;
    color: #888;
}

footer {
    background: #1a1a1a;
    background: rgba(26, 26, 26, 0.95);
    padding: 1.5rem 0;
    text-align: center;
    color: #888;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.success-message {
    background: #dc143c;
    color: #ffffff;
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
    border: 1px solid #dc143c;
}

.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    cursor: pointer;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-button svg {
    width: 35px;
    height: 35px;
    color: white;
}

@media (max-width: 768px) {
    .whatsapp-button {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-button svg {
        width: 30px;
        height: 30px;
    }
}

.services-info {
    background: #1a1a1a;
    background: rgba(26, 26, 26, 0.9);
    padding: 4rem 0;
    margin-top: 2rem;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.section-title {
    text-align: center;
    color: #dc143c;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.service-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-info-card {
    background: #2a2a2a;
    background: rgba(42, 42, 42, 0.9);
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid #333;
    border-left: 4px solid #dc143c;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.3);
}

.service-info-card h3 {
    color: #dc143c;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-info-card p {
    color: #ffffff;
    line-height: 1.8;
    font-size: 1rem;
}

.info-banner {
    background: #dc143c;
    background: linear-gradient(135deg, #dc143c 0%, #1a1a1a 100%);
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    border: 2px solid #dc143c;
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.4);
}

.info-banner h3 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.info-banner p {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .service-info-grid {
        grid-template-columns: 1fr;
    }
    
    .services-info {
        padding: 2rem 0;
    }
}
