/* İletişim Page Specific Styles */

/* Contact Cards */
.contact-card {
    background: rgba(26, 26, 26, 0.8);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.5s ease;
}

.contact-card:hover::before {
    left: 100%;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-premium);
    border-color: var(--primary-color);
}

.contact-whatsapp {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.1) 0%, rgba(26, 26, 26, 0.9) 100%);
    border-color: #25d366;
}

.contact-whatsapp:hover {
    border-color: #128c7e;
    box-shadow: 0 20px 40px rgba(37, 211, 102, 0.2);
}

.contact-icon-wrapper {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--bg-dark);
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon-wrapper {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.whatsapp-bg {
    background: #25d366 !important;
    color: white !important;
}

.contact-card h4 {
    color: var(--primary-color);
    font-family: var(--font-primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-detail {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.contact-whatsapp .contact-detail {
    color: #25d366;
}

/* WhatsApp Button */
.btn-whatsapp {
    background: #25d366;
    border: none;
    color: white;
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-whatsapp:hover {
    background: #128c7e;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

/* Contact Intro */
.contact-intro-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* Working Hours Section */
.working-hours-section {
    background: var(--bg-darker);
}

.hours-content {
    padding-right: 3rem;
}

.hours-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hours-schedule {
    margin: 2rem 0;
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(26, 26, 26, 0.5);
    border-radius: 10px;
    margin-bottom: 1rem;
    border-left: 4px solid var(--primary-color);
}

.day {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.time {
    font-weight: 500;
    color: var(--text-light);
    font-size: 1.1rem;
}

.hours-note {
    display: flex;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-top: 1.5rem;
}

.hours-note i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.hours-image {
    position: relative;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-dark);
}

.hours-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    border: 2px dashed var(--primary-color);
    border-radius: 20px;
}

/* Reservation Section */
.reservation-section {
    background: var(--bg-dark);
}

.reservation-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.reservation-buttons {
    margin-top: 2rem;
}

.reservation-buttons .btn {
    margin: 0.5rem;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.reservation-buttons .btn:hover {
    transform: translateY(-2px);
}

/* FAQ Section */
.faq-section {
    background: var(--bg-darker);
}

.accordion-item {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-item:last-child {
    margin-bottom: 0;
}

.accordion-button {
    background: transparent;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    box-shadow: none;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-color);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(212, 175, 55, 0.3);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23d4af37'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23d4af37'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    color: var(--text-muted);
    line-height: 1.7;
    padding: 1.5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.accordion-body strong {
    color: var(--primary-color);
}

/* Location Function */
.location-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    backdrop-filter: blur(10px);
}

.location-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--bg-dark);
    border-radius: 20px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    border: 2px solid var(--primary-color);
    text-align: center;
}

.location-info-modal {
    margin-bottom: 1.5rem;
}

.location-info-modal h4 {
    color: var(--primary-color);
    font-family: var(--font-primary);
    margin-bottom: 1rem;
}

.location-info-modal p {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.close-modal {
    background: var(--primary-color);
    border: none;
    color: var(--bg-dark);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-modal:hover {
    background: #e6c158;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hours-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .reservation-buttons .btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }
    
    .contact-card {
        margin-bottom: 2rem;
    }
    
    .schedule-item {
        flex-direction: column;
        text-align: center;
    }
    
    .day {
        margin-bottom: 0.5rem;
    }
    
    .accordion-button {
        font-size: 1rem;
        padding: 1rem;
    }
    
    .location-modal-content {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .contact-icon-wrapper {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .contact-card h4 {
        font-size: 1.3rem;
    }
    
    .contact-detail {
        font-size: 1rem;
    }
    
    .reservation-buttons .btn {
        font-size: 1rem;
        padding: 10px 20px;
    }
}

/* Animation for contact cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-card {
    animation: fadeInUp 0.6s ease forwards;
}

.contact-card:nth-child(2) {
    animation-delay: 0.2s;
}

.contact-card:nth-child(3) {
    animation-delay: 0.4s;
}

/* Hover effects for buttons */
.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

/* Special styling for WhatsApp contact card */
.contact-whatsapp .contact-card {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.05) 0%, rgba(26, 26, 26, 0.9) 100%);
}

.contact-whatsapp .contact-card:hover {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.1) 0%, rgba(26, 26, 26, 0.95) 100%);
}