/* --- TEMEL STİLLER --- */
body {
    /* Bu değerler zaten tailwind.config içinde tanımlı body'e uygulanıyor. */
    /* Ekstra kurala gerek yok, temizlendi. */
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

.section-container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 120px 24px 80px 24px;
    position: relative;
}

/* --- NAVİGASYON & BUTON HOVER EFEKTLERİ --- */
.nav-link {
    position: relative;
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}
.nav-link::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #D4AF37;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
}
.nav-link:hover { color: white; }
.nav-link:hover::after { transform: scaleX(1); transform-origin: bottom left; }

.main-button {
    background-color: #D4AF37;
    color: #1A1A1A;
    padding: 8px 24px;
    border-radius: 9999px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}
.main-button:hover {
    background-color: #b89a31;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

/* --- HİZMET KARTLARI (FLIP CARD) --- */
.flip-card {
    perspective: 1500px;
    background-color: transparent;
    cursor: pointer;
}
.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}
.flip-card.flipped .flip-card-inner {
    transform: rotateY(180deg);
}
.service-card-front, .service-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 0.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
}
.service-card-front {
    background-size: cover;
    background-position: center;
    color: white;
}
.service-card-front::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.2));
    border-radius: 0.5rem;
}
.service-card-front h3 {
    z-index: 10;
    font-size: 1.75rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    position: absolute;
    bottom: 1.5rem;
}
.service-card-back {
    background-color: #D4AF37;
    color: #1A1A1A;
    transform: rotateY(180deg);
}
.read-more-btn {
    margin-top: 1rem;
    font-weight: 600;
    color: #1A1A1A;
    text-decoration: none;
    transition: transform 0.3s ease;
}
.read-more-btn:hover {
    transform: translateX(10px);
}

/* --- GÖRSEL KARŞILAŞTIRMA SLIDER --- */
.comparison-slider {
    position: relative;
    width: 100%;
    max-width: 800px;
    aspect-ratio: 16 / 9;
    margin: auto;
    overflow: hidden;
    border-radius: 0.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    user-select: none;
    -webkit-user-select: none;
}
.comparison-image {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    pointer-events: none;
}
.before-image { z-index: 1; }
.after-image { z-index: 2; clip-path: inset(0 50% 0 0); }
.comparison-handle {
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 4px; height: 100%;
    background: #D4AF37;
    cursor: col-resize;
    z-index: 3;
    display: flex;
    align-items: center;
}
.handle-circle {
    position: absolute;
    left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    width: 40px; height: 40px;
    background: #D4AF37;
    color: #1A1A1A;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* --- AKORDİYON MENÜ (S.S.S) --- */
.accordion-item { background-color: #242424; border-radius: 0.5rem; overflow: hidden; }
.accordion-button {
    width: 100%;
    background: none; border: none;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    text-align: left; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    color: #EAEAEA; font-weight: 600;
}
.accordion-button::after {
    content: '+';
    font-size: 1.5rem;
    color: #D4AF37;
    transition: transform 0.3s ease;
}
.accordion-button.active::after { transform: rotate(45deg); }
.accordion-panel { max-height: 0; overflow: hidden; transition: max-height 0.4s ease-out; }
.accordion-panel p { padding: 0 1.5rem 1.5rem 1.5rem; color: #a0aec0; }

/* --- İLETİŞİM FORMU & QR KOD --- */
.form-input {
    width: 100%;
    background-color: #242424;
    border: 1px solid #4a5568;
    color: #EAEAEA;
    padding: 0.75rem 1rem;
    border-radius: 0.375rem;
    transition: all 0.3s;
}
.form-input:focus {
    outline: none;
    border-color: #D4AF37;
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.4);
}
.qr-code-container { opacity: 1; }
.call-button {
    background-color: #3b82f6;
    color: white;
}
.call-button:hover {
    background-color: #2563eb;
}

/* --- SABİT BUTONLAR (FAB) --- */
.fab {
    position: fixed;
    bottom: 1.5rem; right: 1.5rem;
    background-color: #25D366;
    color: white;
    width: 4rem; height: 4rem;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    z-index: 50;
    transition: transform 0.3s ease;
}
.fab:hover { transform: scale(1.1); }
.fab-call {
    background-color: #3b82f6;
    bottom: 6.5rem;
    right: 1.5rem;
}
.fab-call:hover {
    background-color: #2563eb;
    transform: scale(1.1);
}

/* --- KAYDIRMA ÇUBUĞU --- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #1A1A1A; }
::-webkit-scrollbar-thumb { background: #4a4a4a; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #5a5a5a; }


/* --- YENİ & DÜZENLENMİŞ ÇARK STİLLERİ --- */
.wheel-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pointer {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 40px solid #D4AF37; /* Renk güncellendi */
    z-index: 10;
    filter: drop-shadow(2px 2px 3px rgba(0,0,0,0.5));
}

.wheel-container {
    position: relative;
    width: 500px;
    height: 500px;
    max-width: 90vw; /* Mobil uyumluluk */
    max-height: 90vw; /* Mobil uyumluluk */
}

#wheel-svg {
    width: 100%;
    height: 100%;
    transition: transform 6s cubic-bezier(0.1, 0.7, 0.0, 1);
    border-radius: 50%;
    box-shadow: 0 0 25px rgba(0,0,0,0.5), inset 0 0 15px rgba(212,175,55,0.3);
}

.slice-text {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: bold;
    pointer-events: none; /* Yazıların tıklamayı engellememesi için */
}

#spin-btn {
    margin-top: 30px;
    padding: 12px 32px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #1A1A1A; /* Renk güncellendi */
    background-color: #D4AF37; /* Renk güncellendi */
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.1s;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}
#spin-btn:hover {
    background-color: #b89a31; /* Renk güncellendi */
    transform: translateY(-2px);
}
#spin-btn:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.2);
}
#spin-btn:disabled {
    background-color: #95a5a6;
    color: #EAEAEA;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

#result-text {
    margin-top: 25px;
    padding: 10px 20px;
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: bold;
    color: #D4AF37; /* Renk güncellendi */
    min-height: 50px;
    text-align: center;
    border-radius: 8px;
    background-color: rgba(26, 26, 26, 0.7); /* Renk güncellendi */
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    backdrop-filter: blur(4px);
}