@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

:root {
    --primary-color: #769f9d; /* Huzur veren yeşil-mavi tonu */
    --bg-color: #f8f9fa;
    --text-color: #2d3436;
    --card-bg: #ffffff;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    margin: 0;
    display: flex;
    justify-content: center;
    padding: 50px 20px;
}

.container {
    width: 100%;
    max-width: 800px;
    animation: fadeIn 0.8s ease-in-out;
}

h1 {
    text-align: center;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.subtitle {
    text-align: center;
    color: #636e72;
    margin-bottom: 40px;
    font-weight: 300;
}

/* Yorum Formu Tasarımı */
.yorum-kutusu {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-bottom: 40px;
}

.yorum-kutusu input, .yorum-kutusu textarea {
    width: 100%;
    border: 1px solid #dfe6e9;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 15px;
    font-family: inherit;
    transition: 0.3s;
    box-sizing: border-box;
}

.yorum-kutusu input:focus, .yorum-kutusu textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 8px rgba(118, 159, 157, 0.2);
}

.yorum-kutusu button {
    width: 100%;
    padding: 15px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.yorum-kutusu button:hover {
    background-color: #5d817f;
    transform: translateY(-2px);
}

/* Yorum Kartları Tasarımı */
#yorumlar-alani {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.yorum-kart {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border-left: 5px solid var(--primary-color);
    transition: 0.3s;
}

.yorum-kart:hover {
    transform: translateY(-5px);
}

.yorum-kart strong {
    display: block;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.yorum-kart p {
    font-size: 14px;
    line-height: 1.6;
    color: #4b4b4b;
    margin-bottom: 10px;
}

.yorum-kart small {
    font-size: 11px;
    color: #b2bec3;
}

/* WhatsApp Butonu */
.wa-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: 0.3s;
}

.wa-float:hover {
    transform: scale(1.1);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}