:root {
    --primary: #1a237e;
    --secondary: #303f9f;
    --accent: #3949ab;
    --light: #f5f7ff;
    --dark: #1a237e;
    --border: #e3e8ff;
    --success: #00c853;
    --card-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    --hover-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    --gradient: linear-gradient(135deg, #1a237e, #303f9f);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

body {
    background: var(--light);
    color: var(--dark);
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
}

.profile-container {
    max-width: 1231px;
    margin: 2rem auto; 
    border: 1px solid #273491;
    padding: 10px;
    border-radius: 30px;
}

/* Profil Header */
.profile-header {
    background: var(--gradient);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.profile-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--glass-bg) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translate(0, 0); }
    50% { transform: translate(20px, 20px); }
    100% { transform: translate(0, 0); }
}

.profile-avatar {
    position: relative;
    z-index: 1;
}

.profile-avatar img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 20px;
    border: 3px solid var(--glass-border);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.profile-avatar img:hover {
    transform: scale(1.02);
    border-color: var(--accent);
}

.profile-avatar .camera-btn {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background: var(--accent);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.profile-avatar .camera-btn:hover {
    transform: scale(1.1);
    background: var(--secondary);
}

.profile-info h1 {
    font-size: 2rem;
    color: white;
    margin: 0;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.profile-info p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0.5rem 0 1rem;
    font-size: 1rem;
}

.profile-actions {
    display: flex;
    gap: 0.8rem;
}

.profile-actions .btn {
    padding: 0.6rem 1.2rem;
    border-radius: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.profile-actions .btn-light {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: white;
    backdrop-filter: blur(5px);
}

.profile-actions .btn-outline-light {
    border: 1px solid var(--glass-border);
    color: white;
}

.profile-actions .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Bilgi Kartları */
.info-section {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

.info-section:hover {
    transform: translateY(-3px);
    box-shadow: var(--hover-shadow);
}

.info-section h2 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.info-section h2 i {
    color: var(--accent);
    font-size: 1.4rem;
}

.info-item {
    background: var(--light);
    padding: 1.2rem;
    border-radius: 15px;
    display: flex;
    gap: 1rem;
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid var(--border);
    text-align: center;
    justify-content: center;
    align-items: center;
}

.info-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--card-shadow);
    border-color: var(--accent);
}

.info-item i {
    font-size: 1.2rem;
    color: white;
    background: var(--accent);
    padding: 0.8rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.info-item:hover i {
    transform: scale(1.05) rotate(3deg);
}

.info-item label {
    display: block;
    font-size: 0.8rem;
    color: var(--secondary);
    margin-bottom: 0.2rem;
    font-weight: 500;
}

.info-item span {
    font-size: 1rem;
    color: var(--primary);
    font-weight: 500;
}

/* Projeler Kartı */
.project-card {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient);
    opacity: 0;
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--hover-shadow);
}

.project-card:hover::before {
    opacity: 1;
}

.project-header {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
}

.project-header i {
    font-size: 1.3rem;
    color: white;
    background: var(--accent);
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.project-card:hover .project-header i {
    transform: scale(1.05) rotate(3deg);
}

.project-title h3 {
    font-size: 1.1rem;
    color: var(--primary);
    margin: 0;
    font-weight: 600;
}

.project-id {
    font-size: 0.8rem;
    color: var(--secondary);
    display: block;
    margin-top: 0.3rem;
}

.project-representative {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.2rem;
    border-top: 1px solid var(--border);
}

.project-representative img {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    object-fit: cover;
    border: 2px solid var(--border);
    transition: all 0.3s ease;
}

.project-card:hover .project-representative img {
    border-color: var(--accent);
    transform: scale(1.02);
}

.representative-info {
    display: flex;
    flex-direction: column;
}

.rep-name {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 500;
}

.rep-title {
    font-size: 0.8rem;
    color: var(--secondary);
    margin-top: 0.2rem;
}

/* Müşteri Temsilcisi Kartı */
.support-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
}

.support-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--hover-shadow);
}

.support-header {
    background: var(--gradient);
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--glass-border);
}

.support-header h2 {
    font-size: 1.3rem;
    color: white;
    margin: 0;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.support-status {
    background: var(--glass-bg);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.support-status i {
    color: var(--success);
    font-size: 0.7rem;
}

.support-content {
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.support-content img {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    object-fit: cover;
    border: 3px solid var(--light);
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
}

.support-card:hover .support-content img {
    transform: scale(1.02);
    border-color: var(--accent);
}

.support-content h3 {
    font-size: 1.2rem;
    color: var(--primary);
    margin: 0 0 0.4rem;
    font-weight: 600;
}

.support-content p {
    color: var(--secondary);
    font-size: 0.9rem;
    margin: 0 0 1.2rem;
}

.support-actions {
    display: flex;
    gap: 1rem;
}

.support-actions button {
    padding: 0.8rem 1.5rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.support-actions button:first-child {
    background: var(--accent);
    color: white;
    border: none;
}

.support-actions button:last-child {
    background: var(--light);
    color: var(--primary);
    border: 1px solid var(--border);
}

.support-actions button:hover {
    transform: translateY(-2px);
    box-shadow: var(--card-shadow);
}

@media (max-width: 768px) {
    .profile-header {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .profile-actions {
        justify-content: center;
    }

    .support-content {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .support-actions {
        justify-content: center;
    }

    .info-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 0.8rem;
    }
    
    .info-item {
        padding: 0.8rem;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }
}

/* Projeler Kartı - info-section class'ından sonra ekleyin */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.project-card {
    background: var(--light);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    height: 100%;
}

.project-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--card-shadow);
}

.project-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.project-header i {
    font-size: 1.2rem;
    color: white;
    background: var(--accent);
    padding: 0.8rem;
    border-radius: 10px;
}

.project-title h3 {
    font-size: 1.1rem;
    color: var(--primary);
    margin: 0;
    font-weight: 600;
}

.project-id {
    font-size: 0.8rem;
    color: var(--secondary);
    display: block;
    margin-top: 0.3rem;
}

.project-representative {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.project-representative img {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    object-fit: cover;
}

.representative-info {
    display: flex;
    flex-direction: column;
}

.rep-name {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 500;
}

.rep-title {
    font-size: 0.8rem;
    color: var(--secondary);
    margin-top: 0.2rem;
}

@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }
}
 